/*** Variables ***/

:root {
    /* --font-size: 16px; */
    --sidebar-width: 280px;
    --max-content-width: 1500px;
    --lmd-blue: #233D7F;
    --lmd-red: #EA252A;
    --primary-spacing: .5rem;
    --primary-border-radius: 1rem;
    --text-label-produs-nou: 'Nou';
    --text-label-oferta: 'Preț special';
    --text-label-produs-stoc: 'Stoc';
    --text-label-variante: 'Diverse modele';
    --product-list-spacing: .5rem;
    --product-min-width: 250px;
    --produs-fara-imagine-bg: url(/website/images/produs-fara-imagine.webp);
}

/*** Global declarations ***/

html {
  font-size: 16px;
  overscroll-behavior: none;
  line-height: normal !important;
}
body {
  background-color: #e0edfb;
  display: grid;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  grid-template-rows: auto auto 1fr auto;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}
body.mobile-search-open,
body.zoom-overlay-open,
body.mobile-menu-open {
  overflow-y: hidden;
}
* {
    box-sizing: border-box;
}
p {
    line-height: 1.5;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
[v-cloak] {
  opacity: 0;
}
  
/*** NAVIGATION ***/

/* Top menu */

.top-menu-wrapper {
    background-color: var(--lmd-red);
    background: linear-gradient(90deg, var(--lmd-red, red) 25%, var(--lmd-blue, navy) 75%);
    background: linear-gradient(90deg, rgba(234,37,42,1) 15%, rgba(6,81,168,1) 50%, rgba(45,60,125,1) 80%);
    color: white;
    text-decoration: none;
}
.top-menu {
    margin-inline: auto;
    max-width: var(--max-content-width, 1500px);
}
.top-menu ul {
    align-items: center;
    display: flex;
    font-size: .8rem;
    gap: 1rem;
    height: 2.5rem;
    justify-content: flex-end;
    margin: 0;
    padding: 0 1rem;
}
.top-menu ul li {
    height: 100%;
}
.top-menu ul a {
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    display: flex;
    height: 100%;
    padding-inline: .5rem;
    text-decoration: none;
    transition: background-color .25s;
    white-space: nowrap;
}
.top-menu ul a:hover {
    background-color: rgba(255, 255, 255, .1);
}
@media (max-width: 1023px) {
  .top-menu-wrapper {
    overflow-x: auto;
  }
  .top-menu ul {
    justify-content: flex-start;
  }
}

/* Header */

.header-wrapper {
  background-color: white;
  box-shadow: 0 0 10px 0px rgba(35, 61, 127, .2);
  position: sticky;
  top: 0;
  z-index: 5;
}
header {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr auto auto auto;
    /* grid-template-columns: auto 1fr auto auto; */
    margin-inline: auto;
    max-width: var(--max-content-width, 1500px);
    min-height: 50px;
}
body:has(.wrapper-comparare) header {
  /* grid-template-columns: auto 1fr auto auto auto; */
  grid-template-columns: auto 1fr auto auto auto auto;
}
body:has(.wrapper-comparare) .autentificat header {
  grid-template-columns: auto 1fr auto auto auto auto auto;
}

/* Logo */

.logo {
    padding-inline: .5rem;
    width: var(--sidebar-width, 280px);
}
.logo a {
    display: flex;
    padding-block: .35rem .15rem;
}
.logo a img {
  display: block;
  height: 4rem;
  max-width: 100%;
  transition: height .25s;
  width: auto;
}
.header-wrapper.sticky .logo a img {
  height: 3rem;
}

@media (max-width: 1023px) {
  .logo {
    width: 160px;
  }
  .logo a {
    padding-block: 0;
  }
  .logo a img {
    height: auto;
    margin-bottom: -.25rem;
    margin-left: 0;
    width: 100%;
  }
  .header-wrapper {
    order: -1;
  }
}

/* Search */

.search {
  position: relative;
}
.search input:not([type="hidden"]) {
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  display: flex;
  height: 2.5rem;
  padding-inline: 1rem;
  width: 100%;
}
.search input:focus {
  border: 1px solid #e5e5e5;
  box-shadow: -2000px -2000px 0 4000px rgba(0, 0, 0, .5);
  outline: none;
}
.search:has(.lista-fara-rezultate) input:focus,
.search:has(.rezultate-cautare:not(:empty)) input:focus {
  /* border-radius: .5rem .5rem 0 0; */
  border-radius: 1rem 1rem 0 0;
}
@media (max-width: 600px) {
  .search {
    margin-left: auto;
  }
}
@media (max-width: 1023px) {
  .mobile .search input {
    box-shadow: none;
  }
}
.search-suggestions {
  background-color: white;
  border: 1px solid lightblue;
  border-radius: 0 0 .5rem .5rem;
  border-top: 1px solid transparent;
  left: 0;
  min-height: 300px;
  outline: 1px solid lightblue;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: calc(100% - 1px);
}
.search input:not(:focus) + .search-suggestions {
  display: none;
}
@media (min-width: 1024px) {
  body:has(.search input:focus) {
    overflow: hidden;
  }
}
body:has(.search input:focus) .content-wrapper {
  pointer-events: none;
}
@media (min-width: 601px) {
  .search .toggle-mobile-search {
    display: none;
  }
}
.menu-toggle {
  appearance: none;
  background: url(../images/icons/menu.svg) center center / contain no-repeat;
  border: 0;
  color: transparent;
  cursor: pointer;
  height: 2rem;
  margin-right: .5rem;
  overflow: hidden;
  padding: 0;
  width: 2rem;
}
.menu-link-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  height: 100%;
  font-size: inherit;
  outline: none;
  padding: 0 .5rem;
  transition: background-color .25s;
}
.menu-link-toggle:hover {
  background-color: rgba(255, 255, 255, .1);
}
@media (max-width: 599px) {
  .menu-link-toggle {
    display: none;
  }
}
@media (min-width: 601px) and (max-width: 1023px) {
  .menu-toggle {
    display: none;
  }
}
@media (min-width: 1024px) {
  .menu-link-toggle,
  .menu-toggle {
    display: none;
  }
}

/* Cos cumparaturi si cont client */

.basket {
  position: relative;
}
.basket,
.account {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: .9rem;
  gap: .25rem;
  text-decoration: none;
  transition: all .25s;
}
.basket img,
.account img {
  transition: scale .25s;
}
.basket:hover img,
.account:hover img {
  filter: invert(17%) sepia(92%) saturate(1216%) hue-rotate(205deg) brightness(91%) contrast(92%);
  text-decoration: none;
}
.basket:hover img,
.account:hover img {
  scale: 1.1;
}
.are-favorite span,
.basket strong {
  align-items: center;
  background-color: var(--lmd-blue, navy);
  border-radius: .5rem;
  color: #ffffff;
  display: inline-flex;
  font-size: .7rem;
  font-weight: normal;
  height: 1.25rem;
  justify-content: center;
  padding-inline: .5rem;
  position: absolute;
  right: -.75rem;
  top: -.75rem;
}
.basket strong:empty {
  display: none;
}
.mobile.mobile-search-open .basket {
  z-index: -1;
}
@media (max-width: 1023px) {
  /* .account span, */
  .basket span {
    display: none;
  }
}
  
/*** Content ***/

.content-wrapper {
    height: 100%;
    padding-inline: var(--primary-spacing, .5rem);
}
.content {
    display: grid;
    gap: var(--primary-spacing, .5rem);
    margin-inline: auto;
    max-width: var(--max-content-width, 1500px);
    position: relative;
    width: 100%;
}
.content:has(div ~ main) {
    grid-template-columns: calc(var(--sidebar-width, 250px) + var(--primary-spacing, .5rem)) 1fr;
}
main {
  min-width: 0;
}

/*** Sidebar ***/

/* Meniu produse  */

nav {
  background-color: white;
  border-radius: 1rem 0 1rem 1rem;
  margin-block: var(--primary-spacing, .5rem);
  overflow: hidden;
  padding-block: 0.75rem;
}
body:not(.mobile) nav {
  /* position: sticky; */
  /* top: 5rem; */
  /* z-index: 1; */
}
.close-menu {
  background: url(../images/icons/close.svg) center center / contain no-repeat;
  border: 0;
  cursor: pointer;
  height: 2rem;
  font-size: 0;
  overflow: hidden;
  position: absolute;
  right: 1rem;
  width: 2rem;
  z-index: 2;
}
nav:has(.clase-produse > li.active) .close-menu {
  background: url(../images/icons/arrow-left.svg) center center / contain no-repeat;
}
@media (min-width: 1024px) {
  .close-menu {
    display: none;
  }
}
.clase-produse {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.clase-produse:has(li.hovered) > li:not(.hovered) {
  box-shadow: inset -25px 0px 20px -20px rgba(0, 0, 0, 0.15);
}
.clase-produse li.hovered {
  background-color: #f7f4eb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  border-top: 1px solid rgba(0, 0, 0, 0.075);
}
.clase-produse > li:not(.hovered):not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, .05);
}
/* .clase-produse li:hover > .submenu-wrapper, */
.clase-produse li.hovered > .submenu-wrapper {
  display: flex;
  flex-direction: column;
}
.submenu-wrapper {
  background: white;
  border-radius: 0 1rem 1rem 0;
  font-size: .9rem;
  grid-template-rows: auto 1fr;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, .2);
  margin: .5rem 0 0 0;
  position: absolute;
  height: var(--products-height, 0);
  left: var(--sidebar-width, 250px);
  right: 0;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.submenu-wrapper {
  padding: 0 1rem 1rem;
}
.submenu-wrapper > ul {
  /* columns: 3; */ /* original */
  display: inline-block;
  gap: 2rem;
  list-style-type: none;
  margin-left: var(--primary-spacing, .5rem);
  padding: 1rem;
  flex: 1;
  column-count: 3;
  column-fill: auto;
  height: 90%;
  /* break-after: avoid-column; */
  /* break-inside: avoid; */
  /* padding-bottom: 1rem; */
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.submenu-wrapper > ul > li {
  break-inside: avoid;
  margin-bottom: 1.35rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.submenu-wrapper > ul > li > ul {
  font-weight: normal;
  margin-block: .5rem;
  /* break-inside: avoid;
  box-sizing: border-box; */
}
.submenu-wrapper > ul > li > ul > li {
  margin-bottom: .25rem;
  /* break-inside: avoid;
  box-sizing: border-box; */
}
.submenu-wrapper > ul > li > ul > li > ul {
  margin-block: .3rem .5rem;
}
.submenu-wrapper > ul > li > ul > li > ul > li {
  margin-bottom: .5rem;
}
/* chirurgie */
.c-61 .submenu-wrapper > ul > li {
  break-inside: avoid-page;
  margin-bottom: .75rem;
}
.c-61 .submenu-wrapper > ul > li:last-child {
  border-top: 1px solid rgba(0, 0, 0, .1);
  column-span: all;
  margin-top: 1rem;
  padding-top: 1rem;
}
.c-61 .submenu-wrapper > ul > li:last-child > ul {
  columns: 3;
  gap: 2rem;
}
.c-336 .submenu-wrapper > ul {
  gap: 3rem;
  white-space: nowrap;
}
.submenu-wrapper .titlu-submeniu {
  align-items: center;
  border-bottom: 1px solid var(--lmd-blue);
  display: flex;
  gap: 2rem;
  margin-block-end: 1.5rem;
}
.submenu-wrapper > ul > li > a {
  color: var(--lmd-blue, navy);
  font-weight: bold;
  text-decoration: none;
}
.submenu-wrapper > ul > li a:not(.submenu-wrapper > ul > li > a) {
  color: #000000;
  text-decoration: none;
}
.submenu-wrapper > ul > li a:not(.submenu-wrapper > ul > li > a):hover,
.submenu-wrapper > ul > li > a:hover {
  color: var(--lmd-red, red);
}
@media (min-width: 1024px) {
  /* .clase-produse li:not(:hover):not(.active) > .submenu-wrapper, */
  .clase-produse li:not(.hovered):not(.active) > .submenu-wrapper {
    display: none;
  }
  .submenu-wrapper .titlu-submeniu {
    justify-content: space-between;
  }
}
.submenu-wrapper .titlu-submeniu a {
  color: var(--lmd-blue);
  display: inline-flex;
  text-decoration: none;
  transition: scale .25s;
}
.submenu-wrapper .titlu-submeniu a:hover {
  scale: 1.05;
}
.submenu-wrapper .titlu-submeniu h3 a {
  transform-origin: center left;
}
.submenu-wrapper .titlu-submeniu > a {
  font-weight: 400;
  transform-origin: center right;
}
nav > ul > li {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: .5rem;
  height: 2rem;
  padding-inline: 0 .5rem;
  transition: color .25s;
}
.mobile nav > ul > li {
  height: 2.5rem;
}
/* nav > ul > li:hover, */
nav > ul > li.hovered {
  color: var(--lmd-blue);
  font-weight: bold;
}
.clase-produse li.curenta::before,
nav > ul > li::before {
  background-color: #d00;
  content: '';
  height: 0;
  transition: height .25s;
  width: .25rem;
}
.clase-produse li.curenta::before {
  background-color: #e0e0e0;
}
.clase-produse li.curenta::before {
  height: 100%;
}
nav > ul > li.active::before,
/* nav > ul > li:hover::before, */
nav > ul > li.hovered::before {
  height: 100%;
}
ul > li > ul {
  padding-left: 1rem;
}
@media (max-width: 1023px) {
  .content > div {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: transform .25s;
    z-index: 99;
    width: 100%;
  }
  .mobile-menu-open .content > div {
      transform: translateX(0);
  }
  .content > div nav {
    border-radius: 0;
    height: 100%;
    margin: 0;
    overflow-y: scroll;
  }
  .clase-produse {
    padding-top: 0;
  }
  /*nav .clase-produse li >*/ 
  .submenu-wrapper {
    bottom: 0;
    height: 100vh;
    left: 0;
    margin: 0;
    overflow-y: scroll;
    position: absolute;
    transform: translateX(-100%);
    transition: transform .25s;
    bottom: 0;
    height: auto;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
  }
  nav .clase-produse li.active > .submenu-wrapper {
    transform: translateX(0);
  }
  .c-61 .submenu-wrapper > ul > li:last-child ul {
    columns: initial;
    margin-block-start: .5rem;
  }
  .submenu-wrapper > ul {
    columns: initial;
    margin: 0;
    flex: 1;
  }
  .submenu-wrapper .titlu-submeniu {
    background-color: #ffffff;
    position: sticky;
    top: 0;
  }
  .submenu-wrapper .titlu-submeniu > a {
    display: none;
  }
}
body:has(.clase-produse > li.hovered) .buton-cere-oferta.clicked::before {
  display: none;
}

/* Products display style */

.breadcrumbs + .display-inactive,
.breadcrumbs + .display-style,
.display-style:first-child,
.display-inactive:first-child {
    margin-left: auto;
}
.display-inactive {
    align-items: center;
    display: inline-flex;
    font-size: .8rem;
    gap: .5rem;
}
.display-inactive label {
    align-items: center;
    display: inline-flex;
    gap: .25rem;
}
.display-inactive label input[type="checkbox"] {
    margin: 0;
}
.display-inactive span {
    color: #777777;
    white-space: nowrap;
}
.display-style {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    margin-block: .25rem;
}
.display-style::before {
    content: 'Afisare: ';
    color: #777777;
    font-size: .8rem;
    margin-right: .5rem;
}
.display-style button {
    border: 1px solid rgba(0, 0, 0, .3);
    cursor: pointer;
    display: grid;
    height: 1.5rem;
    place-content: center;
    padding: .75rem .5rem;
}
.display-style button.active {
    background-color: rgba(0, 0, 0, .2);
}
.display-style button svg {
    height: .75rem;
    width: auto;
}
.display-style button:not(:last-child) {
    border-radius: .25rem 0 0 .25rem;
    border-right: 0;
}
.display-style button:last-child {
    border-radius: 0 .25rem .25rem 0;
}
@media (max-width: 768px) {
    .display-style::before {
        content: '';
    }
    .display-style {
        display: none;
    }
}

/*** Footer ***/

.footer-wrapper {
  background-color: var(--lmd-blue);
  color: white;
  margin-top: 1rem;
  text-decoration: none;
}
footer {
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-inline: auto;
  max-width: var(--max-content-width, 1500px);
  padding: 2rem 4rem;
}
@media (max-width: 1023px) {
  footer {
    flex-direction: column;
  }
}
footer ul {
  margin: 0;
  padding: 0;
}
footer .footer-links:first-child {
  display: grid;
  gap: 2rem;
}
@media (max-width: 1023px) {
  footer .footer-links:first-child {
    order: 2;
    text-align: center;
    width: 100%;
  }
}
ul.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
ul.footer-links li a {
  align-items: center;
  display: flex;
  min-height: 2rem;
}
footer a,
footer a:hover {
  color: white;
  text-decoration: none;
  transform-origin: center left;
  transition: scale .25s;
}
footer a:hover {
  scale: 1.05;
}
.social-links {
  display: flex;
  gap: 2rem;
}
.footer-links:has(.social-links) {
  margin-right: auto;
}
.social-links {
  list-style-type: none;
  padding: 0;
}
@media (max-width: 1023px) {
  .social-links {
    font-size: 0;
    justify-content: center;
  }
}
.social-link {
  align-items: center;
  display: flex;
  gap: var(--primary-spacing, .5rem);
}
.social-link::before {
  border-radius: 51%;
  content: '';
  display: inline-flex;
  height: 2rem;
  width: 2rem;
}
.social-link.facebook::before {
  background: url(../images/icons/social-media/facebook.svg) center center / contain no-repeat;
}
.social-link.instagram::before {
  background: url(../images/icons/social-media/instagram.svg) center center / contain no-repeat;
}
.social-link.linkedin::before {
  background: url(../images/icons/social-media/linkedin.svg) center center / contain no-repeat;
}
.social-link.youtube::before {
  background: url(../images/icons/social-media/youtube.svg) center center / contain no-repeat;
}
.scroll-top {
  background: var(--lmd-blue, navy) url(../images/icons/up.svg) center center / 50% no-repeat;
  border: 1px solid #ffffff;
  border-radius: 50%;
  bottom: 1.5rem;
  cursor: pointer;
  height: 2rem;
  position: fixed;
  right: 1.5rem;
  transition: opacity .25s, scale .25s;
  width: 2rem;
}
.scroll-top:hover {
  scale: 1.1;
}
.mobile .scroll-top {
  height: 2.5rem;
  width: 2.5rem;
}
.scroll-top.hidden {
  opacity: 0;
  pointer-events: none;
}
body:not(.mobile) .mobile-contact {
  display: grid;
  gap: 1rem;
}
.mobile .mobile-contact {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.mobile .mobile-contact h3 {
  color: #ffffff;
  margin: 0;
}

/* Zoom level trick */

@media (min-resolution: 120dpi) and (min-width: 1024px) {
  body {
    --max-content-width: 1200px;
  }
  html[itemscope="itemscope"] {
    font-size: 13px;
  }
  .main-image-wrapper {
    aspect-ratio: 4 / 3;
  }
  .product-wrapper .product-zoom:not(.zoom-image) .zoom-button-wrapper {
    bottom: 8.75rem;
  }
}

/* EXTRA */

.submenu-wrapper > ul > li {
  margin-bottom: 1rem;
}

/* Cookie settings */

.cookie-wrapper {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 20;
}
.cookie-wrapper.visible-message {
  align-items: center;
  background-color: #233D7F;
  color: #ffffff;
  display: flex;
  gap: 2rem;
  padding: 1rem;
}
@media (max-width: 768px) {
  .cookie-wrapper.visible-message {
    flex-direction: column;
  }
  .cookies-text {
    padding-inline: 1rem;
  }
}
.cookies-text {
  line-height: 1.5;
}
.cookies-text a {
  color: #ffffff;
}
.cookie-settings-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}
.cookie-wrapper.visible-message .open-cookie-settings {
  display: none;
}
.open-cookie-settings {
  appearance: none;
  background-color: #e0edfb;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  left: 1rem;
  margin: 0;
  padding: .25rem;
  top: -3.5rem;
  transition: scale .25s;
}
.open-cookie-settings:hover {
  scale: 1.1;
}
.open-cookie-settings svg {
  height: 2rem;
  pointer-events: none;
  width: 2rem;
}
.save-preferences, 
.cookie-settings-buttons button {
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: .5rem;
  color: #ffffff;
  cursor: pointer;
  padding: .5rem 1rem;
  transition: scale .25s;
}
.save-preferences:hover, 
.cookie-settings-buttons button:hover {
  scale: 1.05;
}
.cookie-wrapper:not(.visible-settings) .cookie-settings-panel {
  display: none;
}
.cookie-wrapper:not(.visible-message) .cookies-text,
.cookie-wrapper:not(.visible-message) .cookie-settings-buttons {
  display: none;
}
.visible-message:not(.visible-settings) .cookies-text {
  display: block;
  padding-inline-start: 3rem;
}
.visible-message:not(.visible-settings) .cookie-settings-buttons {
  display: inline-flex;
}
.visible-settings .cookies-text, .visible-settings .cookie-settings-buttons {
  display: none;
}
.cookie-settings-panel {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 2rem;
  justify-content: space-between;
  padding: 1rem;
}
.cookie-settings-panel .close-settings {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  right: .25rem;
  top: .25rem;
}
.cookie-settings-panel .close-settings svg {
  height: 2rem;
  transform-origin: center;
  transition: scale .25s;
  width: 2rem;
}
.cookie-settings-panel .close-settings:hover svg {
  scale: 1.1;
}
.cookie-options {
  display: grid;
  gap: 1rem;
}
.cookie-options .cookie-settings-row input {
  cursor: pointer;
}

/* MENU HOVER */

main {
  transition: opacity .25s;
}
.content:has(.clase-produse:hover) main:not(.inactiv) {
  opacity: .5;
}

/* account */

.account {
  cursor: pointer;
  display: flex;
  height: 1.5rem;
  justify-content: center;
  position: relative;
  width: 1.5rem;
}
.account.logged img {
  filter: invert(20%) sepia(94%) saturate(3434%) hue-rotate(99deg) brightness(95%) contrast(71%);
}
.account-menu {
  background-color: #fff;
  box-shadow: 0 0 10px 0px rgba(35, 61, 127, .2);
  border-radius: .5rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  transition: scale .25s;
}
.account.logged:not(.visible-account-menu) .account-menu {
  scale: 0;
}
header .account {
  margin-right: 0;
}
header .logout {
  transition: scale .25s;
}
header .logout:hover {
  scale: 1.05;
}
.logout-button {
  color: var(--lmd-red, red);
  transform-origin: center left;
  transition: scale .25s;
}
.logout-button:hover {
  scale: 1.05;
}
.account-menu a {
  text-decoration: none;
}
.account-menu a:not(.logout-button) {
  color: var(--lmd-blue, navy);
  transform-origin: center left;
  transition: scale .25s;
}
.account-menu a:not(.logout-button):hover {
  scale: 1.05;
}

/* menufix mobile */

@media (max-width: 1023px) {
  .mobile nav .clase-produse li.active > .submenu-wrapper {
      width: 100%;
  }
  .mobile .titlu-clase {
    border-radius: 0;
    position: sticky;
    top: 0;
  }
  .mobile .close-menu {
    filter: invert(1);
  }
  .mobile nav:has(.clase-produse li.hovered) .close-menu {
    filter: invert(0);
  }
  .logo a img {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .mobile .logo a img {
    height: 3rem;
  }
  .mobile .header-wrapper.sticky .logo a img {
    height: 2.5rem;
  }
  .mobile header {
    gap: .5rem;
  }
}
/* sidebar flicker fix */
@media (min-width: 1024px) {
  #sidebar-left {
    max-width: var(--sidebar-width, 280px);
  }
}

/* huge screens and huge font-size */

@media ((min-resolution: 150dpi) or (min-resolution: 1.5dppx)) and (min-width: 1024px) {
  .submenu-wrapper > ul {
    columns: 4;
    column-count: 4;
  }
}

.solutionare-litigii {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
.solutionare-litigii > a {
  transform-origin: center center;
}

/* comparare produse */

.wrapper-comparare {
  background: #ffffff;
  border-radius: .5rem;
  box-shadow: 0 0 10px 0px rgba(35, 61, 127, .2);
  display: none;
  padding: .25rem;
  position: fixed;
  right: calc(max((100vw - var(--max-content-width)) / 2 - 0.5rem, 0.5rem));
  text-align: center;
  top: 7.5rem;
  z-index: 2;
}
.wrapper-comparare.visible:has(.produse-comparate li) {
  display: block;
}
.produse-comparate {
  display: grid;
  gap: .25rem;
  margin-block-end: 0;
  padding-inline-start: 0;
}
.produse-comparate:empty {
  display: none;
}
.produse-comparate li {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: .25rem;
  display: flex;
  min-height: 80px;
  overflow: hidden;
  position: relative;
}
.produse-comparate li img:not(.sterge) {
  display: block;
  font-size: 0;
  margin-block: auto;
  position: relative;
}
.produse-comparate li img:not(.sterge)::before {
  background-color: #ffffff;
  /* background-image: url(https://liamed.ro/lmd_v1/assetsF/images/produse/no_photo_400x400_zoom.png); */
  background-image: var(--produs-fara-imagine-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: '';
  display: grid;
  height: 100%;
  left: 0;
  max-width: 78px;
  place-content: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.produse-comparate li .sterge {
  cursor: pointer;
  height: 1rem;
  opacity: 0;
  position: absolute;
  right: .25rem;
  top: .25rem;
  transition: opacity .25s;
  z-index: 2;
  width: 1rem;
}
.produse-comparate li:hover .sterge {
  opacity: 1;
}
.compara-produse {
  background-color: var(--lmd-blue, navy);
  background-image: none;
  border: 0;
  border-radius: .5rem;
  color: #ffffff;
  display: none;
  font-size: .625rem;
  height: unset;
  margin-block-start: .5rem;
  outline: none;
  padding: .5rem .75rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .25s;
}
.produse-comparate:has(li) + .compara-produse {
  display: inline-flex;
}
.date-contact-client input[type="checkbox"],
#aplicant_gdpr,
#aplicant_tcpc,
#stagiar_tcpc,
#stagiar_gdpr,
.form-service .form-row input[type="checkbox"],
input[name="remember"],
input[name="compare"] {
  appearance: none;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #999;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  height: 1rem;
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: .2s ease-in-out;
  transition-property: background-color, border;
  width: 1rem;
}
.date-contact-client input[type="checkbox"]:not(:checked):not(:disabled):hover,
#aplicant_gdpr:not(:checked):not(:disabled):hover,
#aplicant_tcpc:not(:checked):not(:disabled):hover,
#stagiar_tcpc:not(:checked):not(:disabled):hover,
#stagiar_gdpr:not(:checked):not(:disabled):hover,
.form-service .form-row input[type="checkbox"]:not(:checked):not(:disabled):hover,
input[name="remember"]:not(:checked):not(:disabled):hover,
input[name="compare"]:not(:checked):not(:disabled):hover {
  border-color: #233D7F;
}
.date-contact-client input[type="checkbox"]:checked,
#aplicant_gdpr:checked,
#aplicant_tcpc:checked,
#stagiar_tcpc:checked,
#stagiar_gdpr:checked,
.form-service .form-row input[type="checkbox"]:checked,
input[name="remember"]:checked,
input[name="compare"]:checked {
/*  background-color: #1e87f0;*/
  background-color: #233D7F; 
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  border-color: transparent;
}
input[name="compare"]:disabled {
  border-color: #ddd;
  cursor: default;
}
label:has(input[type="checkbox"]) {
  cursor: pointer;
  display: inline-flex;
  gap: .25rem;
  align-items: center;
}
@media (max-width: 768px) {
  #sidebar-left:has(.filtre-container) .submenu-wrapper .titlu-submeniu {
    margin-block-end: 2.5rem;
  }
}
.detalii-noutate.video-aniversar {
  bottom: 5.5rem;
  font-size: 0;
  left: unset;
  position: absolute;
  right: 4.5rem;
  transition: scale .25s;
}
.detalii-noutate.video-aniversar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 231.1 65.95'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:%23ea252a;stroke-width:0%7D.cls-2%7Bfill:%23fff%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_5' data-name='Layer 5'%3E%3Crect width='231.1' height='65.95' class='cls-1' rx='10.89' ry='10.89'/%3E%3Ccircle cx='36.97' cy='32.98' r='19.55' class='cls-2'/%3E%3Cpath d='M48.07 32.98 29.44 19.97v26.01l18.63-13z' class='cls-1'/%3E%3Cpath d='m67.4 24.93 3.14-9.68h2.36l-4.45 12.37h-2.08l-4.44-12.37h2.35l3.11 9.68ZM74.1 16.04c0-.32.1-.58.3-.79.2-.21.49-.31.86-.31s.66.1.87.31c.2.21.31.47.31.79s-.1.57-.31.78c-.2.21-.49.31-.87.31s-.66-.1-.86-.31c-.2-.21-.3-.47-.3-.78Zm2.2 11.58h-2.07v-9.19h2.07v9.19ZM80.75 25.97h4.89v1.65h-7.46v-1.35l4.67-6.18h-4.58v-1.67h7.2v1.31l-4.72 6.24ZM92.86 26.72c-.61.71-1.47 1.07-2.58 1.07-1 0-1.75-.29-2.26-.88-.51-.58-.77-1.43-.77-2.53v-5.96h2.07v5.93c0 1.17.48 1.75 1.45 1.75s1.68-.36 2.03-1.08v-6.6h2.06v9.19h-1.95l-.05-.9ZM102.46 27.62c-.09-.18-.17-.46-.24-.86-.66.69-1.46 1.03-2.41 1.03s-1.68-.26-2.26-.79c-.58-.53-.88-1.18-.88-1.96 0-.98.36-1.73 1.09-2.26.73-.52 1.77-.79 3.12-.79h1.27v-.6c0-.48-.13-.86-.4-1.14-.27-.29-.67-.43-1.22-.43-.47 0-.86.12-1.16.35-.3.24-.45.53-.45.9h-2.07c0-.5.17-.98.5-1.42.33-.44.79-.78 1.36-1.03s1.22-.37 1.92-.37c1.08 0 1.93.27 2.58.81.64.54.97 1.3.99 2.28v4.15c0 .83.12 1.49.35 1.98v.14h-2.11Zm-2.27-1.49c.41 0 .79-.1 1.15-.3.36-.2.63-.46.81-.8V23.3h-1.11c-.76 0-1.34.13-1.73.4-.38.27-.58.64-.58 1.13 0 .4.13.71.39.95s.62.35 1.06.35ZM108.58 27.62h-2.07V14.57h2.07v13.05ZM110.83 16.04c0-.32.1-.58.3-.79.2-.21.49-.31.86-.31s.66.1.87.31c.2.21.31.47.31.79s-.1.57-.31.78c-.2.21-.49.31-.87.31s-.66-.1-.86-.31c-.2-.21-.3-.47-.3-.78Zm2.19 11.58h-2.07v-9.19h2.07v9.19ZM117.47 25.97h4.89v1.65h-7.46v-1.35l4.67-6.18h-4.58v-1.67h7.2v1.31l-4.72 6.24ZM129.51 27.62c-.09-.18-.17-.46-.24-.86-.66.69-1.46 1.03-2.41 1.03s-1.68-.26-2.26-.79c-.58-.53-.88-1.18-.88-1.96 0-.98.36-1.73 1.09-2.26.73-.52 1.77-.79 3.12-.79h1.27v-.6c0-.48-.13-.86-.4-1.14-.27-.29-.67-.43-1.22-.43-.47 0-.86.12-1.16.35-.3.24-.45.53-.45.9h-2.07c0-.5.17-.98.5-1.42.33-.44.79-.78 1.36-1.03s1.22-.37 1.92-.37c1.08 0 1.93.27 2.58.81.64.54.97 1.3.99 2.28v4.15c0 .83.12 1.49.35 1.98v.14h-2.11Zm-2.26-1.49c.41 0 .79-.1 1.15-.3.36-.2.63-.46.81-.8V23.3h-1.11c-.76 0-1.34.13-1.73.4-.38.27-.58.64-.58 1.13 0 .4.13.71.39.95s.62.35 1.06.35ZM136.02 16.19v2.24h1.62v1.53h-1.62v5.13c0 .35.07.6.21.76.14.16.39.23.74.23.24 0 .48-.03.72-.08v1.6c-.47.13-.92.2-1.36.2-1.59 0-2.38-.88-2.38-2.63v-5.21h-1.51v-1.53h1.51v-2.24h2.07Zm-.27 15.84-1.09-.65c.41-.65.63-1.33.65-2.02v-.85h1.71v.67c0 .53-.13 1.05-.36 1.58-.24.53-.54.95-.9 1.27ZM139.23 16.04c0-.32.1-.58.3-.79.2-.21.49-.31.86-.31s.66.1.87.31c.2.21.31.47.31.79s-.1.57-.31.78c-.2.21-.49.31-.87.31s-.66-.1-.86-.31c-.2-.21-.3-.47-.3-.78Zm2.19 11.58h-2.07v-9.19h2.07v9.19ZM149.94 18.43l.06.96c.65-.75 1.53-1.13 2.65-1.13 1.23 0 2.07.47 2.52 1.41.67-.94 1.61-1.41 2.82-1.41 1.01 0 1.77.28 2.26.84.5.56.75 1.39.76 2.48v6.04h-2.06v-5.98c0-.58-.13-1.01-.38-1.28s-.68-.41-1.27-.41c-.47 0-.85.13-1.15.38-.3.25-.51.58-.62.99v6.31h-2.06v-6.05c-.03-1.08-.58-1.62-1.66-1.62-.83 0-1.41.34-1.76 1.01v6.66h-2.06v-9.19h1.95ZM162.76 22.94c0-.9.18-1.71.54-2.43.36-.72.86-1.28 1.5-1.67.65-.39 1.39-.58 2.23-.58 1.24 0 2.25.4 3.02 1.2s1.19 1.86 1.25 3.18v.48c0 .91-.17 1.72-.51 2.43s-.85 1.27-1.5 1.66c-.65.39-1.4.59-2.25.59-1.3 0-2.34-.43-3.11-1.3-.78-.86-1.17-2.02-1.17-3.45v-.1Zm2.06.18c0 .95.2 1.69.59 2.22.39.54.93.8 1.63.8s1.24-.27 1.63-.82c.39-.54.58-1.34.58-2.39 0-.93-.2-1.67-.6-2.21s-.94-.82-1.63-.82-1.21.27-1.61.8-.59 1.34-.59 2.4ZM174.99 18.43l.06.96c.65-.75 1.53-1.13 2.65-1.13 1.23 0 2.07.47 2.52 1.41.67-.94 1.61-1.41 2.82-1.41 1.01 0 1.77.28 2.26.84.5.56.75 1.39.76 2.48v6.04H184v-5.98c0-.58-.13-1.01-.38-1.28s-.68-.41-1.27-.41c-.47 0-.85.13-1.15.38-.3.25-.51.58-.62.99v6.31h-2.06v-6.05c-.03-1.08-.58-1.62-1.66-1.62-.83 0-1.41.34-1.76 1.01v6.66h-2.06v-9.19h1.95ZM192.24 27.79c-1.31 0-2.37-.41-3.18-1.24-.81-.82-1.22-1.92-1.22-3.29v-.25c0-.92.18-1.74.53-2.46s.85-1.28 1.49-1.69c.64-.4 1.35-.6 2.14-.6 1.25 0 2.22.4 2.9 1.2.68.8 1.02 1.93 1.02 3.39v.83h-6.01c.06.76.32 1.36.76 1.8.44.44 1 .66 1.68.66.95 0 1.72-.38 2.31-1.15l1.11 1.06c-.37.55-.86.98-1.47 1.28-.61.3-1.3.46-2.07.46Zm-.24-7.88c-.57 0-1.02.2-1.37.59s-.57.95-.67 1.66h3.93v-.15c-.05-.69-.23-1.21-.55-1.57-.32-.35-.77-.53-1.34-.53ZM199.45 18.43l.06 1.06c.68-.82 1.57-1.23 2.68-1.23 1.92 0 2.89 1.1 2.92 3.29v6.08h-2.07v-5.96c0-.58-.13-1.02-.38-1.3s-.66-.42-1.24-.42c-.83 0-1.45.38-1.86 1.13v6.54h-2.06v-9.19h1.95ZM209.8 16.19v2.24h1.62v1.53h-1.62v5.13c0 .35.07.6.21.76.14.16.39.23.74.23.24 0 .48-.03.72-.08v1.6c-.47.13-.92.2-1.36.2-1.59 0-2.38-.88-2.38-2.63v-5.21h-1.51v-1.53h1.51v-2.24h2.07ZM218.57 26.72c-.61.71-1.47 1.07-2.58 1.07-1 0-1.75-.29-2.26-.88-.51-.58-.77-1.43-.77-2.53v-5.96h2.07v5.93c0 1.17.48 1.75 1.45 1.75s1.68-.36 2.03-1.08v-6.6h2.06v9.19h-1.95l-.05-.9ZM224.87 27.62h-2.07V14.57h2.07v13.05ZM98.09 39.31l.06 1.06c.68-.82 1.57-1.23 2.68-1.23 1.92 0 2.89 1.1 2.92 3.29v6.08h-2.07v-5.96c0-.58-.13-1.02-.38-1.3s-.66-.42-1.24-.42c-.83 0-1.45.38-1.86 1.13v6.54h-2.06v-9.19h1.95ZM105.47 43.82c0-.9.18-1.71.54-2.43.36-.72.86-1.28 1.5-1.67.65-.39 1.39-.58 2.23-.58 1.24 0 2.25.4 3.02 1.2s1.19 1.86 1.25 3.18V44c0 .91-.17 1.72-.51 2.43s-.85 1.27-1.5 1.66c-.65.39-1.4.59-2.25.59-1.3 0-2.34-.43-3.11-1.3-.78-.86-1.17-2.02-1.17-3.45v-.1Zm2.06.18c0 .95.2 1.69.59 2.22.39.54.93.8 1.63.8s1.24-.27 1.63-.82c.39-.54.58-1.34.58-2.39 0-.93-.2-1.67-.6-2.21s-.94-.82-1.63-.82-1.21.27-1.61.8-.59 1.34-.59 2.4ZM120.92 46.01c0-.37-.15-.65-.46-.84-.3-.19-.81-.36-1.51-.51-.7-.15-1.29-.33-1.76-.56-1.03-.5-1.55-1.22-1.55-2.17 0-.79.33-1.46 1-1.99.67-.53 1.52-.8 2.55-.8 1.1 0 1.99.27 2.66.82s1.02 1.25 1.02 2.12h-2.07c0-.4-.15-.73-.44-.99s-.69-.39-1.17-.39c-.45 0-.82.1-1.11.31-.29.21-.43.49-.43.84 0 .32.13.56.4.74s.8.35 1.61.53c.81.18 1.45.39 1.91.64.46.25.8.54 1.03.89s.34.76.34 1.26c0 .83-.34 1.5-1.03 2.01-.69.51-1.58.77-2.69.77-.75 0-1.42-.14-2.01-.41-.59-.27-1.05-.65-1.38-1.12-.33-.48-.49-.99-.49-1.54h2c.03.49.21.86.55 1.13.34.26.79.39 1.35.39s.96-.1 1.24-.31.42-.48.42-.81ZM127.33 37.07v2.24h1.62v1.53h-1.62v5.13c0 .35.07.6.21.76.14.16.39.23.74.23.24 0 .48-.03.72-.08v1.6c-.47.13-.92.2-1.36.2-1.59 0-2.38-.88-2.38-2.63v-5.21h-1.51v-1.53h1.51v-2.24h2.07ZM135.34 41.2c-.27-.05-.55-.07-.84-.07-.95 0-1.58.36-1.91 1.09v6.29h-2.06v-9.19h1.97l.05 1.03c.5-.8 1.19-1.2 2.07-1.2.29 0 .54.04.73.12v1.94ZM142.22 47.6c-.61.71-1.47 1.07-2.58 1.07-1 0-1.75-.29-2.26-.88-.51-.58-.77-1.43-.77-2.53V39.3h2.07v5.93c0 1.17.48 1.75 1.45 1.75s1.68-.36 2.03-1.08v-6.6h2.06v9.19h-1.95l-.05-.9ZM151.38 48.5v-7.67h-1.4V39.3h1.4v-.84c0-1.02.28-1.81.85-2.36.57-.55 1.36-.83 2.38-.83.36 0 .75.05 1.16.15l-.05 1.62c-.23-.05-.49-.07-.79-.07-.99 0-1.48.51-1.48 1.52v.82h1.87v1.53h-1.87v7.67h-2.07ZM160.67 48.67c-1.31 0-2.37-.41-3.18-1.24-.81-.82-1.22-1.92-1.22-3.29v-.25c0-.92.18-1.74.53-2.46s.85-1.28 1.49-1.69c.64-.4 1.35-.6 2.14-.6 1.25 0 2.22.4 2.9 1.2.68.8 1.02 1.93 1.02 3.39v.83h-6.01c.06.76.32 1.36.76 1.8.44.44 1 .66 1.68.66.95 0 1.72-.38 2.31-1.15l1.11 1.06c-.37.55-.86.98-1.47 1.28-.61.3-1.3.46-2.07.46Zm-.25-7.87c-.57 0-1.02.2-1.37.59s-.57.95-.67 1.66h3.93v-.15c-.05-.69-.23-1.21-.55-1.57-.32-.35-.77-.53-1.34-.53ZM171.11 46.01c0-.37-.15-.65-.46-.84-.3-.19-.81-.36-1.51-.51-.7-.15-1.29-.33-1.76-.56-1.03-.5-1.55-1.22-1.55-2.17 0-.79.33-1.46 1-1.99.67-.53 1.52-.8 2.55-.8 1.1 0 1.99.27 2.66.82s1.02 1.25 1.02 2.12h-2.07c0-.4-.15-.73-.44-.99s-.69-.39-1.17-.39c-.45 0-.82.1-1.11.31-.29.21-.43.49-.43.84 0 .32.13.56.4.74s.8.35 1.61.53c.81.18 1.45.39 1.91.64.46.25.8.54 1.03.89s.34.76.34 1.26c0 .83-.34 1.5-1.03 2.01-.69.51-1.58.77-2.69.77-.75 0-1.42-.14-2.01-.41-.59-.27-1.05-.65-1.38-1.12-.33-.48-.49-.99-.49-1.54h2c.03.49.21.86.55 1.13.34.26.79.39 1.35.39s.96-.1 1.24-.31.42-.48.42-.81ZM177.53 37.07v2.24h1.62v1.53h-1.62v5.13c0 .35.07.6.21.76.14.16.39.23.74.23.24 0 .48-.03.72-.08v1.6c-.47.13-.92.2-1.36.2-1.59 0-2.38-.88-2.38-2.63v-5.21h-1.51v-1.53h1.51v-2.24h2.07ZM180.73 36.92c0-.32.1-.58.3-.79.2-.21.49-.31.86-.31s.66.1.87.31c.2.21.31.47.31.79s-.1.57-.31.78c-.2.21-.49.31-.87.31s-.66-.1-.86-.31c-.2-.21-.3-.47-.3-.78Zm2.19 11.58h-2.07v-9.19h2.07v9.19ZM188.41 45.89l1.95-6.58h2.13l-3.19 9.19h-1.79l-3.21-9.19h2.14l1.97 6.58Z' class='cls-2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: flex;
  height: 4.125rem;
  width: 14.4375rem;
}
.detalii-noutate:hover {
  scale: 1.1;
}

@media (max-width: 768px) {
  .detalii-noutate.video-aniversar {
    bottom: unset;
    left: .5rem;
    right: unset;
    top: .5rem;
  }
  .detalii-noutate.video-aniversar::before {
    height: 2.1rem;
    width: 7.25rem;
  }
}

    /* LATEST VERSION */

  nav {
    overflow: visible;
    padding-block-start: 0;
    transition: border-radius .25s;
    z-index: 1;
  }
  nav:has(.clase-produse:hover) {
      border-radius: 1rem 0 0 1rem;
  }
  .submenu-wrapper {
      margin: 0;
      right: unset;
      width: min(calc(100vw - var(--sidebar-width) - 2rem), calc(var(--max-content-width) - var(--sidebar-width)));
  }
  .submenu-wrapper .titlu-submeniu {
      height: 2.25rem;
  }
  .submenu-wrapper .titlu-submeniu h3 {
      margin-block: 0;
  }
  .titlu-clase {
      background-color: #000000;
      background-image: linear-gradient(to right, var(--lmd-red, red), var(--lmd-red, red));
      border-radius: 1rem 0 0 0;
      color: #ffffff;
      font-weight: bold;
      letter-spacing: .25px;
      align-items: center;
      display: flex;
      height: 2.25rem;
      padding-inline: 1rem;
      text-transform: uppercase;
  }

  .clase-produse > li:not(.hovered):not(:first-child) {
      border-top: 1px solid rgba(0, 0, 0, .1);
  }
  nav > ul > li {
      height: calc((100dvh - 15rem) / 22);
      max-height: 2.5rem;
      min-height: 1.5rem;
  }
  body:not(.mobile) nav {
      position: sticky;
      top: 4rem;
  }

.zona-titlu {
  background-color: #ffffff;
  border-radius: 0 1rem 0 0;
  margin-top: .5rem;
  padding-inline: 1rem;
}
.zona-titlu > div:not(.zona-filtre) {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

main:has(h1) h1 {
  color: var(--lmd-blue);
}
.account {
  margin-right: 1rem;
}
@media (max-width: 600px) {
  .footer-wrapper footer {
    padding-inline: 2rem;
  }
}
#sidebar-left nav {
  opacity: 1;
}
.lista-favorite {
  background: url(/website/images/icons/heart.svg) center center / contain no-repeat;
  height: 1.35rem;
  position: relative;
  transition: scale .25s;
  width: 1.35rem;
}
.lista-favorite.are-favorite {
  background: url(/website/images/icons/heart-full.svg) center center / contain no-repeat;
}
.lista-favorite:not(.are-favorite) {
  filter: grayscale(1);
}
.lista-favorite.are-favorite:hover {
  scale: 1.05;
}