/* hide number input arrows*/

/* Chrome, Safari, Edge, Opera */

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

  margin: 0;
}

a,
button,
input {
  -webkit-appearance: none !important;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield !important;

  appearance: textfield !important;
}

/* Smooth Scrolling */

html {
  scroll-behavior: smooth;
}

/* Back to top button */

#btn-back-to-top {
  position: fixed;

  bottom: 1rem;

  right: 1rem;

  z-index: 100;

  display: none;
}

/*pointer effect*/

.pointer {
  cursor: pointer;
}

/* FONTS *************************/

@font-face {
  font-family: "Cinzel";

  src: url("https://weinstore.net/webshop_images/fonts/Cinzel-VariableFont_wght.ttf"), 
    	url("https://weinstore.net/webshop_images/fonts/Cinzel-VariableFont_wght.ttf");

  font-weight: 100 900;
}

@font-face {
  font-family: "Lato";

  src: url("https://weinstore.net/webshop_images/fonts/Lato-Light.ttf"),
    		url("https://weinstore.net/webshop_images/fonts/Lato-Light.ttf");

  font-weight: 100 300;
}

@font-face {
  font-family: "Lato";

  src: url("https://weinstore.net/webshop_images/fonts/Lato-Regular.ttf"),
    	url("https://weinstore.net/webshop_images/fonts/Lato-Regular.ttf")	;

  font-weight: 400 600;
}

@font-face {
  font-family: "Lato";

  src: url("https://weinstore.net/webshop_images/fonts/Lato-Bold.ttf"),
    		url("https://weinstore.net/webshop_images/fonts/Lato-Bold.ttf");

  font-weight: 700 900;
}

/***GENERAL***/

body {
  font-family: "Lato", sans-serif;

  background-color: var(--background-color);

  color: var(--text-color);

  min-height: 100vh;

  display: flex;

  flex-direction: column;
}

.cinzel {
  font-family: "Cinzel";
}
.arial {
	font-family: Arial, sans-serif; 
}
.fw-500{
	font-weight: 500 !important; 
}

footer {
  margin-top: auto;
}

.z-index-1050 {
  z-index: 1050;
}

.z-index-1500 {
  z-index: 1500;
}

.desktop {
  display: table-row;
}

.contact-button {
  display: block !important;

  position: fixed;

  bottom: 4rem;

  right: 1rem;

  z-index: 1;
}

.mobil {
  display: none;
}

.btn,
.card,
.form-select,
.form-control,
.form-check-input[type="checkbox"] {
  border-radius: 0;
}

.btn.btn-primary {
  color: var(--background-color);

  background-color: var(--main-color);

  border-color: var(--main-color);
}

.btn-outline-primary {
  color: var(--main-color);

  border-color: var(--main-color);
}

.btn-outline-primary:hover {
  color: var(--background-color);

  border-color: var(--main-color);

  background-color: var(--main-color);
}

.btn.btn-secondary {
  color: var(--background-color);

  background-color: var(--sec-color);

  border-color: var(--sec-color);
}

.btn-outline-secondary {
  color: var(--main-color);

  border-color: var(--main-color);
}

.btn-outline-secondary:hover {
  color: var(--background-color);

  border-color: var(--main-color);

  background-color: var(--main-color);
}

.light {
  color: var(--text-color-light);
}

.link-light:hover,
a:hover {
  color: var(--text-color);

  text-decoration: none;
}

.form-check-input:checked {
  background-color: var(--main-color);

  border-color: var(--main-color);
}

.form-check-input:focus,
.form-select:focus {
  border-color: var(--main-color);

  box-shadow: 0 0 0 0.25rem var(--main-color-25alpha);
}

.input-group > .form-select:focus {
  z-index: 0;
}

.bg-white {
  background-color: white !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-site {
  background: var(--background-color) !important;
}

.bg-primary {
  background-color: var(--main-color) !important;
}

.bg-sidebar {
  background-color: var(--sidebar-color) !important;
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.btn {
  radius: 0 !important;
}

.bg-secondary {
  background-color: var(--sec-color) !important;
}

.bg-footer {
  background-color: var(--footer-color);
}

.form-control:focus {
  border-color: var(--main-color);

  box-shadow: 0 0 0 0.25rem var(--main-color-25alpha);
}

.text-primary {
  color: var(--main-color) !important;
}

.text-muted {
  color: var(--text-color-light);
}

.text-light {
  color: var(--light-color);
}

.letter-spacing {
  letter-spacing: 0.1em;
}

.font-09-rem {
  font-size: 0.9rem;
}

.font-s {
  font-size: small;
}

.font-xs {
  font-size: x-small;
}

.font-m {
  font-size: medium;
}

.font-l {
  font-size: large;
}

.font-xl {
  font-size: x-large;
}

.text-color {
  color: var(--text-color);
}

.text-color-light {
  color: var(--text-color-light);
}

.link-light {
  color: var(--text-color-light);
}

.link-dark {
  color: var(--text-color);
}

.small-hover-shadow {
  transition: box-shadow 0.3s ease;
}

.small-hover-shadow:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Smaller box shadow on hover */
}

.expertise_a,
.elabel {
  color: var(--main-color);

  text-decoration: underline;
}

.expertise_a:hover,
.expertise_a:active,
.expertise_a:focus,
.elabel:hover,
.elabel:active,
.elabel:focus {
  text-decoration: none;

  color: var(--main-color);
}

.toggle-element {
  display: none;
}

.max-height-420px {
  max-height: 420px;
}

.minilist {
  overflow-y: scroll;
}

/* Navbar */

.sidebar {
  width: var(--sidebar-width);

  height: 100vh;

  transition: all 0.3s ease;

  position: absolute;
}

.sidebar.collapsed {
  width: var(--sidebar-width-collapsed);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
}

.burger-line-top {
  background-color: var(--background-color);

  width: 30px;

  height: 3px;

  margin-top: 3px;

  margin-bottom: 6px;

  transition: transform 0.25s ease;
}

.burger-line-middle {
  background-color: var(--background-color);

  width: 30px;

  height: 3px;

  margin-bottom: 6px;

  transition: display 0.25s ease;
}

.burger-line-bottom {
  background-color: var(--background-color);

  width: 30px;

  height: 3px;

  transition: transform 0.25s ease;
}

.transform-x1 {
  transform: translate3d(0px, 4px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(45deg) skew(0deg) !important;

  margin-top: 6px;
}

.transform-x2 {
  transform: translate3d(0px, -4px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(-45deg) skew(0deg) !important;
}

.transform-line {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg);

  transform-style: preserve-3d;
}

.navbar-toggler {
  color: var(--background-color) !important;

  background-color: var(--main-color) !important;

  border-color: var(--main-color) !important;

  border-radius: 0 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar .bg-menu {
  min-height: 10rem;

  max-height: 12rem;

  background-image: url("https://weinstore.net/webshop_images/trossen-menu-background.webp");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center 45%;
}

.navbar-brand img {
  min-width: 4em;

  max-width: 5em;

  margin-left: 2em;

  margin-right: 2em;
}

#navbarSupportedContent.collapse {
  top: 0;

  right: 0;

  height: 100vh;

  transform: translateX(100%);

  transition: transform 0.3s ease-in-out;

  z-index: 1000;
}

#navbarSupportedContent.show {
  transform: translateX(0);
}

.nav-link {
  color: var(--text-color) !important;
}

.sidebar .nav-link {
  color: white !important;
}

footer .nav-link {
  color: var(--text-color-light) !important;
}

footer .nav-item {
  border-bottom: 1px solid #cdcdcd;
}

.border-bottom-shadow {
  /*box-shadow: 0 6px 6px -6px var(--main-color);*/

  border-bottom: 0.01em dotted var(--main-color);
}

#grp_aktiv {
  color: var(--background-color) !important;

  background-color: var(--button-secondary-color) !important;
}

.hover-animation.aktiv {
  border-bottom: 1px solid var(--main-color);
}

#search-input {
  min-width: 4em;

  max-width: 10em;
}


.hover-animation {
  transition: 0.2s ease-in-out;

  border-bottom: 1px solid transparent;
}

.hover-animation:hover {
  border-color: var(--main-color);
}

.sidebar .hover-animation:hover {
  background-color: #444;

  border-color: #444;
}

.versandland {
  max-width: 10ch;
}

.dropdown-menu[data-bs-popper] {
  right: 0;

  left: auto;

  max-height: 12em;

  overflow-y: auto;

  width: fit-content;

  overflow-x: clip;

  height: fit-content;
}

/*NEWS**/

.news-preview-img {
  max-height: 15em;
}

/*FILTER*/

.theme-border{
border-width: 4px !important; 
  border-color: var(--light-color) !important;
 
}

/* price  slider */

.slidecontainer {
}

.price-input-container {
  width: 100%;

  display: flex;
}

.price-input-container .price-field {
  display: flex;

  width: 100%;

  height: 35px;

  align-items: center;
}

.price-input-container input {
  width: 100%;

  height: 100%;

  outline: none;

  text-align: center;

  border: 1px solid #999;

  -moz-appearance: textfield;
}

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

.price-input-container .separator {
  display: flex;

  align-items: center;

  justify-content: center;
}

.slider-container {
  height: 5px;

  position: relative;

  background: #ddd;

  border-radius: 5px;
}

.price-slider {
  height: 100%;

  right: 25%;

  position: absolute;

  border-radius: 5px;

  background: var(--main-color);
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;

  width: 100%;

  height: 5px;

  top: -20px;

  background: none;

  pointer-events: none;

  -webkit-appearance: none;

  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;

  width: 17px;

  border-radius: 50%;

  background: var(--main-color);

  pointer-events: auto;

  -webkit-appearance: none;

  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;

  width: 17px;

  border: none;

  border-radius: 50%;

  background: var(--main-color);

  pointer-events: auto;

  -moz-appearance: none;

  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Mouse-over effects */

.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */

.slider::-webkit-slider-thumb {
  border-radius: 0;

  -webkit-appearance: none; /* Override default look */

  appearance: none;

  height: 20px; /* Slider handle height */

  background: var(--main-color); /* Green background */

  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  border-radius: 0;

  /*width: 25px; !* Set a specific slider handle width *!*/

  /*height: 25px; !* Slider handle height *!*/

  background: var(--main-color); /* Green background */

  cursor: pointer; /* Cursor on hover */
}

.wine-filter {
  padding: 0.25rem 1.5rem;

  color: var(--background-color);

  background-color: var(--main-color);

  font-size: 1rem;

  border-radius: 2em;

  -webkit-appearance: none;

  -moz-appearance: none;

  font-weight: 400;

  transition: transform 0.4s ease-in-out;

  display: inline-block;

  font-family: "Open Sans", sans-serif;

  line-height: 2.3;

  cursor: pointer;

  text-decoration: none;

  white-space: nowrap;
}

.wine-filter i {
  font-size: 1em !important;

  line-height: unset !important;
}

.filter-cluster-container {
  display: none;

  color: var(--background-color);
}

.filter-cluster-container .row {
  background-color: var(--main-color);
}

.filter-cluster-container .row * {
  color: var(--background-color);

  background-color: var(--main-color);
}

.filter-cluster-container .form-check .form-check-input {
  margin-left: -1rem;

  border: 2px solid var(--light-color);

  margin-right: 0.2rem;

  background-color: var(--light-color);
}

.filter-cluster-container .form-check .form-check-input:checked {
  border: 2px solid var(--main-color);

  background-color: var(--main-color);
}

.filter-cluster.ancestor,
.auszeichnung.ancestor {
  display: none !important;
}

.wine-filter:hover {
  transform: scale(1.1);
}

.list-group {
  display: revert;

  flex-direction: revert;

  padding-left: 0.5em;
}

.list-group-item {
  border: none;
}

.accordion-item {
  border: none;

  background-color: var(--light-color);
}

.accordion-button:not(.collapsed) {
  color: var(--background-color);

  background-color: var(--main-color) !important;

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: var(--main-color-25alpha);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/*ARTICLE LIST*/

#ausgetrunken_blende {
  visibility: hidden;
}

.article {
  pointer-events: auto;
}

.article a {
  text-decoration: none;
}

.article p {
  margin: 0;
}


.article img {
  max-height: 300px;

  -o-object-fit: contain;

  object-fit: contain;

  min-height: 300px;
}

.fact {
  background: var(--main-color);

  color: var(--text-color-light);

  font-size: x-small;

  letter-spacing: 0.2em;

  padding: 1em 1em 0.8em;

  width: 100%;

  height: 100%;

  font-weight: bold;

  min-height: 33px;
}

.badge-container {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;
}

.badge {
  position: relative;

  margin-right: 5px;
}

.shopnotiz {
  overflow: hidden;
}

.article .shopnotiz {
  font-size: small;

  color: var(--text-color);
}


.auszeichnungen_bild {
  border: 4px solid #dcdcdc !important;
  aspect-ratio:1; 
  padding: 0.2rem;
  width: 100%;
  max-height: 4em !important;
    max-width: 4em !important;


}

.article .border-bottom,
.single-article.border-bottom,
.border-bottom-big,
.detail .border-bottom {
  border-bottom-width: 4px !important;

  border-bottom-style: solid;

  border-bottom-color: #dcdcdc;
}

.article .border-top,
.border-top-big,
.detail .border-top {
  border-top: 4px solid #dcdcdc !important;
}

.nav-item.border-top-big{
  border-color: #DADADA !important;
}

.border-end-big-light {
  border-right: 4px solid white;
}

.article .pricing-div {
  font-size: small;
}

.article .pricing-div a {
  font-size: small;
}

.article .pricing-div button {
  font-size: x-small;
}

.article .name-div {
  font-size: medium;
}

/** Colors for badges **/

.warengruppen-color-1 {
  background-color: #f8df81;
}

.warengruppen-color-2 {
  background-color: #f6aa90;
}

.warengruppen-color-3 {
  background-color: #f6b4bf;
}

.warengruppen-color-4 {
  background-color: #d5b6d5;
}

.warengruppen-color-5 {
  background-color: #badfda;
}

.warengruppen-color-6 {
  background-color: #9bd0b7;
}

/**DETAIL**/

/* striped table */

.table-striped > div:not([style*="display:none"]):nth-child(odd) {
  background-color: var(--detail-table-background-color);
}

.odd-row-background {
  background-color: var(--detail-table-background-color);
}

.carousel-indicators {
  margin-bottom: 0;
}

.detail img {
  max-height: 30rem;

  -o-object-fit: contain;

  object-fit: contain;
}

.nuancen_bild {
  max-height: 4em !important;
}



.auszeichnung>.auszeichnung-beschreibung {
 opacity: 0; 
  transition: all 0.3s ease-in-out;
  min-width: 20vw;
  	visibility:hidden;
  z-index: 1000;

  
}
.auszeichnung:hover>.auszeichnung-beschreibung,
.auszeichnung:active>.auszeichnung-beschreibung,
.auszeichnung:target>.auszeichnung-beschreibung {
visibility: visible !important; 
  opacity: 1 !important;

  }

.auszeichnung .bg-light-gray::before {
  content: "";
  position: absolute;
  top: -10px; /* Oberhalb des Kastens */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--light-gray); /* Gleiche Farbe wie der Kasten */
}

.target {
  max-width: 100%;

  max-height: 100%;
}

#collapseShopNotizContainer #collapseShopNotiz.collapse:not(.show) {
  display: block;

  height: 5rem;

  overflow: hidden;
}

#collapseShopNotizContainer #collapseShopNotiz.collapsing {
  height: 3rem;
}

#collapseShopNotizContainer a.collapsed::after {
  content: "+ Mehr anzeigen";
}

#collapseShopNotizContainer a:not(.collapsed)::after {
  content: "- Weniger anzeigen";
}

.sortiment-container li {
  cursor: pointer;

  box-shadow: 0 6px 6px -6px var(--main-color);

  margin-bottom: 1em;
}

/*WARENKORB*/

@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }

  .mobil {
    display: table-row;
  }
  .navbar-brand img {
    min-width: 8em;
    max-width: 10em;
  }
}

/*KASSE*/

input[type="checkbox"] {
  height: 1.1rem;

  width: 1.1rem;
}

input[type="date"] {
  text-transform: uppercase;
}

.inp {
  width: 100%;

  margin-top: 0.5rem;
}

.kasse .inp {
  margin-top: 0;
}

.form-label {
  margin-bottom: 0.2rem;
}

.form-floating > label {
  left: unset;
}

.invalid-feedback {
  margin-top: 0;

  margin-bottom: 0.25rem;
}

.back-button {
  bottom: 75%;
}

.shopping-cart-sticky {
  position: sticky;

  z-index: 100;

  top: 10rem;
}

#fsendDoi {
  margin-left: 0;

  width: 25px;

  height: 25px;
}

.errorDiv {
  display: none;
}

/*mobile shopping cart row in detail effectively starts at bootstrap5 breakpoint SM and goes until XS*/

@media only screen and (min-width: 0px) and (max-width: 767.98px) {
  .cart-container {
    position: fixed;

    bottom: 0;

    left: 0;

    background-color: #fff;

    width: 100%;

    z-index: 50;

    border-top: 1px solid #aaa;

    padding: 20px;

    margin-bottom: 0;
  }
}

/*mobile weiter in wk starts at MD breakpoint and goes until XS**/

@media only screen and (min-width: 0px) and (max-width: 992px) {
  #btn-back-to-top {
    bottom: 9rem;
  }

  .shopping-cart-sticky {
    top: unset;

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    background-color: #fff;

    width: 100%;

    z-index: 50;

    border-top: 1px solid #aaa;

    padding: 1em;

    margin-bottom: 0;
  }

  .shopping-cart-sticky .row {
    border: none !important;
  }

  .shopping-cart-sticky .row .bg-site {
    background-color: var(--bs-white);
  }

  .submit-order-container {
    position: fixed;

    bottom: 0;

    left: 0;

    background-color: #fff;

    width: 100%;

    z-index: 50;

    border-top: 1px solid #aaa;

    margin: 0;
  }
}

/**BESTELLUNG PRÜFEN*/

#gutscheincode {
  display: none;
}

#gutscheinwert {
  display: none;
}

.zoom-image {
  max-height: 40em !important;

  max-width: 35em !important;
}

@media (min-width: 768px) {
  .desktop-container {
    background-color: #fff;
  }
}

/*bootstrap lg breakpoint */

@media (min-width: 992px) {
  .sortiment-minilist {
    max-height: 35% !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }
  .sidebar.fixed {
    position: fixed;
  }
  .detail img {
    max-height: 45rem;
  }
  
  #filterRebsorte-body{
  	width: max-content!important; 
  }
}

/*bootstrap md breakpoint*/

@media (min-width: 768px) and (max-width: 991.98px) {
  .zoom-image {
    max-height: 37em !important;
  }

  .dropdown-menu[data-bs-popper] {
    left: 50%;

    transform: translateX(-50%);
  }

  .sortiment-minilist {
    max-height: 35% !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }

  .sidebar.fixed {
    position: fixed;
  }

  .article .cinzel{
    font-size: 1.25rem !important;
  }

  .detail img {
    max-height: 42rem;
  }
    .auszeichnung>.auszeichnung-beschreibung {
    max-width: 50vw;
  width: max-content;
  white-space: wrap;
}
  
  
}

/*bootstrap 5 sm breakpoint */

@media (min-width: 576px) and (max-width: 767.98px) {
  .zoom-image {
    max-height: 32em !important;
  }

  .navbar-nav.container-sm {
    padding-left: var(--bs-gutter-x, 0.75rem);
  }

  .dropdown-menu[data-bs-popper] {
    left: 50%;

    transform: translateX(-50%);
  }

  .sortiment-minilist {
    max-height: 70% !important;
  }
   .footer-padding{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  
    .auszeichnung>.auszeichnung-beschreibung {
    max-width: 42vw;
  width: max-content;
  white-space: wrap;
}
  
}

/*bootstrap 5 xs breakpoint */

@media (max-width: 575.98px) {
  
  .auszeichnung>.auszeichnung-beschreibung {
    max-width: 40vw;
  width: max-content;
  white-space: wrap;
}
  
  
  .dropdown-menu[data-bs-popper] {
    left: 50%;

    transform: translateX(-50%);
  }

  .zoom-image {
    max-height: 30em !important;
  }

  #imageModal {
    height: 80%;
  }

  .navbar-nav.container-sm {
    padding-left: var(--bs-gutter-x, 0.75rem);
  }

  .sortiment-minilist {
    max-height: 60% !important;
  }

  .contact-button {
    bottom: 9rem;
  }

  #sidebar:not(.collapsed) {
    width: 100vw;
    height: calc(100vh - var(--navbar-height));
  }

  .footer-padding{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  
   #filterRebsorte-body  .list-group{
  	width: unset !important; 
  }
  
}

#sidebar {
  height: 100vh;
}

:root {
  /*COLORS*/

  --main-color: #af0a18;
  --main-color-25alpha: rgba(175, 10, 24, 0.25);
  --detail-table-background-color: rgba(255, 255, 255, 0.8);
  --button-secondary-color: #6c757d;
  --sec-color: #828282;
  --light-color: #d9d9d9;
  --background-color: #fff;
  --text-color: #2a2a2a;
  --text-color-light: rgb(205, 205, 205);
  --light-gray: #eaeaea;

  --footer-color: #595959;

  --navbar-heigth: 0px;

  --sidebar-width: 320px;

  --sidebar-width-collapsed: 0px;

  --sidebar-color: #666666;
  --bs-gutter-x: 2.5rem;
}
