.menu-right {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--alt-trans);  
  backdrop-filter: blur(1em);
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) var(--color-alt-primary-light);
  box-shadow: 0 -2em 5em var(--border-color);
}

.menu-right-active {
  width: 30em;
  height: 100vh;
  z-index: 4;
}

.menu-right-disabled {
  right: calc(-(100% + 3.5em));
  opacity: 0;
  z-index: -1;
}

.blinder-active {
  z-index: 4;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  /* background-color: var(--bg-main); */
  background-color: var(--alt-trans);
  backdrop-filter: blur(1em);
  opacity: 1;
}

.blinder-disabled {
  z-index: -1;
  opacity: 0;
}

.menu-right .menu-right-closer {
  height: calc(5em - 3px);
  width: 7em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  position: absolute;
  /* top: calc((5em - 3.5em)/2); */
  top: 0;
  z-index: 10;
  right: 100%;
  background-color: var(--bg-main);
  border: none;
  border-left: 2px solid var(--color-primary-light);
  box-shadow: -2em 2em 5em var(--border-color);
}

.menu-right-header {
  height: 5em;
  width: 100%;
  border-bottom: 1px solid var(--bg-card);
  display: flex;
  align-items: center;
}

.menu-right-header button {
  height: 100%;
  width: calc(100% / 3);
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.menu-right-header button.active {
  background-color: var(--color-alt-primary-light);
  border-bottom: .2em solid var(--color-primary-light);
}

.menu-right-header button:hover {
  opacity: .7;
}

.menu-right-main {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  overflow-y: scroll;
}

.menu-right-main .mr-links {
  height: calc(3.05em * 5);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.menu-right-main .mr-categories {
  margin-top: 2em;
}

.menu-right-main div {
  width: 100%;
}

.menu-right-main div button {
  height: 3.05em;
  width: 100%;
  text-align: left;
  text-indent: 1em;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 3em;
}

.menu-right-main div button:hover {
  background-color: var(--color-alt-primary-light);
}

.menu-right-main div button svg {
  opacity: 0;
  height: 1.5em;
}

.menu-right-main div button:hover svg {
  opacity: 1;
}




.menu-right-main .checkout-header {
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
}

.menu-right-main .cart-elements {
  height: calc(100% - 3em);
  width: 100%;
  text-align: center;
}

.menu-right-main .cart-elements .sign-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
}

:root {
  --color-alt-warning: #FFC10735; 
}

.menu-right-main .cart-elements .sign-in svg.no-account-svg {
  width: 4em;
  height: 4em;
  filter: drop-shadow(2em 2em 2em var(--color-alt-warning));
}

.menu-right-main .cart-elements .sign-in .set-account {
  height: 3.5em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em
}

.menu-right-main .cart-elements .sign-in .set-account svg {
  opacity: 1;
}

.menu-right-main .cart-elements .sign-in .set-account button {
  height: 3.5em;
  width: auto;
  padding: 1em 1.5em;
  text-indent: 0;
  gap: 1em;
  border-radius: .7em;
}

.menu-right-main .cart-elements .sign-in .set-account button:hover {
  box-shadow: inset 0 0 3em var(--color-alt-primary-light), 0 0 3em var(--color-alt-primary-light);
}


.menu-right-main .cart-elements .sign-in .set-account a:first-child button {
  background-color: transparent;
  border: 1px solid var(--color-alt-primary-light );
}

.menu-right-main .cart-elements .sign-in .set-account a:last-child button {
  background-color: var(--color-alt-primary-light );
}

.menu-right-main .options {
  height: calc(100% - 5em);
}

.menu-right-main .options > div {
  height: 3em;
  overflow: hidden;
  transition: all .3s ease-in-out !important;
}

.menu-right-main .options >.language-container.active {
  height: calc(3.1em * 3);
}

.menu-right-main .options >.theme-container.active {
  height: calc(3.1em * 4);
}

.menu-right-main .options > div.active>button>svg.arr-right {
  transform: rotate(90deg);
}

.menu-right-main .options button {
  text-indent: 1em;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 2em;
}

.menu-right-main .options button svg,
.menu-right-main .options button:hover svg{
  opacity: 1;
}

.menu-right-main .options button svg.arr-right {
  position: absolute;
  right: 1em;
}

.menu-right-main .options button.option {
  padding-left: 3em;
  text-indent: 1em;
}