:root {
  --font1: "Sawarabi Mincho", serif;
  --font2: monospace;
  --UIOrange: #ffa500;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background-color: #171817;
  overflow-x: hidden;
}
*::selection {
  background-color: rgba(32, 33, 32, 0.272);
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: #51505100;
}

::-webkit-scrollbar-thumb {
  background: rgba(31, 32, 31, 0);
  border-radius: 6px;
}
h1 {
  color: rgb(200, 196, 191);
  text-align: center;
  font-size: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 100;
  position: absolute;
  top: 4.2%;
  left: 0%;
  right: 0%;
}
h1 span {
  font-weight: 600;
  color: var(--UIOrange);
}

.headerHM {
  background-image: url(/assets/sakura.webp);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.backdropProvider {
  background-image: linear-gradient(-15deg, #080502da 20%, #4ddaf2a0 100%);
  backdrop-filter: blur(55px) saturate(290%);
  -webkit-backdrop-filter: blur(55px) saturate(290%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.backdropProviderDark {
  background-image: linear-gradient(-15deg, #020b16df 20%, #36051fe6 100%);
}
.backdropProviderDarkH1 {
  color: rgb(241, 223, 231);
}

.darkModeUserPanel {
  /* background-color: #18161700 !important; */
  background-color: rgba(24, 25, 26, 0.495) !important;
}

main {
  height: 94%;
  width: 1240px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: relative;
}

.userPanel {
  border: 1px solid rgba(247, 246, 246, 0.099);
  width: 55%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.688);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 20px;
  gap: 40px;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#userPanelX {
  display: flex;
  gap: 10px;
}
#searchBar {
  padding: 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border: none;
  background-color: #dcd9ee00;
  cursor: pointer;
  outline: none;
  /*Eliminaelbordealseleccionar*/
  letter-spacing: 1px;
  cursor: default;
  font-family: var(--font1);
  color: #ada9ad;
  letter-spacing: 5px;
  font-weight: 100;
  font-size: 0.8rem;
  box-shadow: inset 2px 5px 10px rgba(5, 5, 5, 0.349);
  caret-color: var(--UIOrange);
}

#searchBar::selection {
  background-color: transparent; /* Asegúrat e de que la selección no tenga fondo */
}

#containerCards {
  border: 1px solid rgba(255, 255, 255, 0.099);
  border-radius: 15px;
  padding: 20px 20px;
  height: 90%;
  width: 55%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  overflow-y: scroll;
  background-color: rgba(13, 9, 9, 0.036);
  box-shadow: inset 2px 5px 20px rgba(5, 5, 5, 0.135);
}

.led-blue {
  position: absolute;
  right: 14px;
  top: 18%;
  z-index: 2;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  border: none;
  background-color: rgb(62, 235, 105);
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.083) 0 -1px 7px 1px,
    inset rgb(74, 227, 100) 0 -1px 9px, rgba(132, 235, 28, 0.532) 0 2px 14px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: blink 1s ease-in-out infinite alternate;
  -webkit-animation: blink 1s ease-in-out infinite alternate;
  transition: ease 0.1s;
  -webkit-transition: ease 0.1s;
  -moz-transition: ease 0.1s;
  -ms-transition: ease 0.1s;
  -o-transition: ease 0.1s;
}

.led-red {
  position: absolute;
  right: 14px;
  top: 18%;
  z-index: 2;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  border: none;
  background-color: rgb(237, 18, 54);
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.083) 0 -1px 7px 1px,
    inset rgb(244, 22, 88) 0 -1px 9px, rgba(226, 7, 72, 0.532) 0 2px 14px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: blink 1s ease-in-out infinite alternate;
  -webkit-animation: blink 1s ease-in-out infinite alternate;
  transition: ease 0.1s;
  -webkit-transition: ease 0.1s;
  -moz-transition: ease 0.1s;
  -ms-transition: ease 0.1s;
  -o-transition: ease 0.1s;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.containerGeneral {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: relative;
}
.uiButtons {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 85.8%;
  gap: 15px;
  right: 16%;
  z-index: 2;
}

.traditionalClass {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 180px;
  top: -8%;
  font-weight: 100;
  text-align: center;
  color: rgba(200, 196, 191, 0.775);
  letter-spacing: 0px;
  font-size: 1.6rem;
}

.traditionalClass span {
  font-weight: 600;
  color: var(--UIOrange);
}
#goBackButton {
  background-color: #18161700;
  border: 1px solid rgba(255, 255, 255, 0.099);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  background-color: rgba(31, 15, 15, 0.236);
  position: relative;
  background-color: rgba(31, 173, 205, 0.212);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#goBackButton path {
  fill: #6c9f1f00;
}

#goBackButton:hover {
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transform: scale(115%);
  -webkit-transform: scale(115%);
  -moz-transform: scale(115%);
  -ms-transform: scale(115%);
  -o-transform: scale(115%);
}

#trashButton {
  background-color: #18161700;
  border: 1px solid rgba(255, 255, 255, 0.099);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  background-color: rgba(31, 15, 15, 0.236);
  position: relative;
  background-color: rgba(239, 27, 66, 0.378);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#trashButton:hover {
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transform: scale(115%);
  -webkit-transform: scale(115%);
  -moz-transform: scale(115%);
  -ms-transform: scale(115%);
  -o-transform: scale(115%);
}

#finishShopButton path {
  transition: 0.6s all ease;
  -webkit-transition: 0.6s all ease;
  -moz-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  -o-transition: 0.6s all ease;
}

#finishShopButton {
  background-color: #18161700;
  border: 1px solid rgba(255, 255, 255, 0.099);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 60%;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  background-color: rgba(31, 15, 15, 0.236);
  position: relative;
  background-color: rgba(0, 0, 0, 0.421);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#finishShopButton:hover path {
  stroke: #8fbc56;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}

#muteButton {
  background-color: #18161700;
  border: 1px solid rgba(255, 255, 255, 0.099);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  background-color: rgba(31, 15, 15, 0.236);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#muteButton:hover {
  transform: scale(115%);
  -webkit-transform: scale(115%);
  -moz-transform: scale(115%);
  -ms-transform: scale(115%);
  -o-transform: scale(115%);
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}

#darkModeButton {
  background-color: #18161700;
  background-color: rgba(31, 15, 15, 0.236);
  border: 1px solid rgba(255, 255, 255, 0.099);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
}

#darkModeButton:hover {
  transform: scale(115%);
  -webkit-transform: scale(115%);
  -moz-transform: scale(115%);
  -ms-transform: scale(115%);
  -o-transform: scale(115%);
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}

.darkModeOn {
  border: 1px solid rgba(255, 255, 255, 0.099) !important;
}

.floatingText {
  top: 52%;
  margin-top: 3px;
  left: 0%;
  right: 0%;
  position: absolute;
  font-size: 1.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #d7d9d4eb;
  font-weight: 100;
}

/* ---------------------MEDIAQUERIES--------------------- */

@media (width > 359px) {
  .phonesNotSupported {
    display: none;
  }
}

@media (width <= 670px) {
  #containerCards {
    width: 550px;
    gap: 30px;
  }
}

@media (width <= 580px) {
  #containerCards {
    width: 460px;
    gap: 30px;
  }
  p {
    font-size: 0.8rem;
  }
  .cards_cart img {
    width: 50% !important;
  }

  .card_cart__content {
    width: 50% !important;
  }
}

@media (width <= 490px) {
  .tooltip {
    right: -43.5px;
    top: -135px;
    width: 130px;
    font-size: 0.57rem;
  }

  .bestSeller {
    top: 74%;
    right: -12%;
  }
  .userPanel {
    width: 395px;
    flex-direction: column;
    gap: 22px;
  }
  #searchBar {
    width: 97%;
  }
  #containerCards {
    width: 395px;
    gap: 30px;
  }

  #userPanelX {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }
  .custom-checkbox {
    font-size: 0.45rem;
    width: 38px;
  }

  .cardFruits {
    height: 150px;
    width: 40%;
  }

  .addToCart {
    width: 21px;
    height: 21px;
    border: none;
    position: absolute;
    right: -15%;
    top: 32%;
  }

  .deleteFromCart {
    width: 18px;
    height: 18px;
    border: none;
    position: absolute;
    right: -14%;
    top: 54%;
  }
}

@media (width <= 420px) {
  .userPanel {
    width: 340px;
    flex-direction: column;
    gap: 22px;
  }
  #searchBar {
    width: 100%;
  }
  #containerCards {
    width: 340px;
    gap: 30px;
  }

  #userPanelX {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .custom-checkbox {
    font-size: 0.45rem;
    width: 38px;
  }

  .cardFruits {
    height: 150px;
    width: 100%;
  }
  h1 {
    top: -24%;
    font-size: 1.2rem;
  }

  .led-blue {
    position: absolute;
    right: 9px;
    top: 12%;
  }

  .addToCart {
    width: 26px;
    height: 26px;
    border: none;
    position: absolute;
    right: 0.8%;
    top: 2%;
  }

  .deleteFromCart {
    width: 22px;
    height: 22px;
    border: none;
    position: absolute;
    right: 1.2%;
    top: 27%;
  }
  .tooltip {
    display: none;
  }

  .bestSeller {
    display: none;
  }
}

@media (width <= 420px) {
  .userPanel {
    width: 340px;
    flex-direction: column;
    gap: 22px;
  }
  #searchBar {
    width: 100%;
  }
  #containerCards {
    width: 340px;
    gap: 30px;
  }

  #userPanelX {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .custom-checkbox {
    font-size: 0.45rem;
    width: 38px;
  }

  .cardFruits {
    height: 150px;
    width: 100%;
  }
  h1 {
    top: 4% !important;
    font-size: 1.2rem;
  }

  .led-blue {
    position: absolute;
    right: 9px;
    top: 12%;
  }
}
@media (width <= 360px) {
  h1 {
    top: -22%;
    font-size: 1.1rem;
  }
}

@media (width <= 359px) {
  .phonesNotSupported {
    position: absolute;
    background-color: #1f2022;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main,
  h1 {
    display: none;
  }

  .phonesNotSupported h2 {
    color: rgb(200, 196, 191);
    text-align: center;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
    font-weight: 100;
  }
  .phonesNotSupported span {
    font-weight: 400;
  }
}

/* //-----------STYLES FOR THE PAGE----------------- */

.cards_cart {
  height: 48%;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid rgba(247, 246, 246, 0.099);
  background-color: rgba(0, 0, 0, 0.421);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
  display: flex;
  position: relative;
}

.cards_cart img {
  height: 100%;
  width: 60%;
  object-fit: cover;
  border-radius: 10px 0px 0px 10px;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  -ms-border-radius: 10px 0px 0px 10px;
  -o-border-radius: 10px 0px 0px 10px;
}

.card_cart__content {
  width: 40%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.card_cart__content p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  margin-left: 20px;
  color: rgb(207, 198, 198);
}

.card_cart__content h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin-left: 20px;
  color: rgb(207, 198, 198);
  font-size: 1.5rem;
}

.cards_cart__container-switch {
  position: absolute;
  right: 2%;
  top: 2%;
}

/* The switch - the box around the slider */
.switch {
  font-size: 12px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #000000c6;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider:before {
  position: absolute;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  width: 2em;
  inset: 0;
  background-color: rgba(226, 226, 226, 0.816);
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.switch input:checked + .slider {
  background: #731d2b;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #731d2b;
}

.switch input:checked + .slider:before {
  transform: translateX(1.6em);
}
.modalResume {
  background-color: rgba(12, 2, 2, 0.476);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -moz-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -ms-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  overflow-y: hidden;
  opacity: 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.activeModal {
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  -moz-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  -ms-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
  z-index: 99;
}

.modalResume__title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 100;
  font-size: 2.6rem;
}

.modalResume p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 100;
}

.modalResume__buttonContainer {
  margin-top: 0px;
  width: 300px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.modalResume__buttonContainer button {
  width: 120px;
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #cecbc7;
  border: none;
  font-weight: 100;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: rgba(18, 16, 16, 0.644);
  cursor: pointer;
  border: 1px solid rgba(247, 246, 246, 0.099);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}

#finishBuyButton {
  font-weight: 700;
  background-color: #90bc56b1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
  border: 1px solid rgba(247, 246, 246, 0.099);
}

#finishBuyButton:hover,
#goBackCartButton:hover,
#goBackCartButton2:hover {
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transform: scale(115%);
  -webkit-transform: scale(115%);
  -moz-transform: scale(115%);
  -ms-transform: scale(115%);
  -o-transform: scale(115%);
}

.spanned {
  font-weight: 600;
}

.modalResume2 {
  background-color: rgba(12, 2, 2, 0.476);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -moz-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -ms-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: hidden;
  opacity: 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  gap: 12px;
}

.modalResume2 p {
  text-align: center;
}
.activeModal {
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  -moz-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  -ms-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  -o-transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  z-index: 99;
}

.modalResume2__title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 100;
  font-size: 2.2rem;
  text-align: center;
}

.modalResume2 p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 100;
}

.modalResume2__buttonContainer {
  margin-top: 0px;
  height: 80px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.modalResume2__buttonContainer button {
  width: 120px;
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #cecbc7;
  border: none;
  font-weight: 100;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: rgba(18, 16, 16, 0.644);
  cursor: pointer;
  border: 1px solid rgba(247, 246, 246, 0.099);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.73) 0px 8px 16px -8px;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}

.thankYouMessage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.thankYouMessage h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 600;
  font-size: 2.9rem;
  color: var(--UIOrange);
}

.thankYouMessage p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #cecbc7;
  font-weight: 100;
  text-align: center;
}

/* /---------------------------ANIMATIONS------------------------------------/ */
.fade-in-bck {
  -webkit-animation: fade-in-bck 0.96s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bck 0.96s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
    transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
