

html {
  touch-action: manipulation;
}

.account-devices-container {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 1vw;
  padding-bottom: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.account-device-item {
  background-color: #f0f0f0;
  padding: 1vw;
  border-radius: 1vw;
  width: 40vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3vw;
  margin-top: 3vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.account-device-item-current {
  font-family: "Roboto", Arial;
  font-size: 1.1vw;
  background-color: rgb(132, 255, 83);
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  border: 2px solid rgb(66, 233, 0);
  border-radius: 3vw;
}

.account-device-item-remove {
  width: 2.5vw;
  padding: 0.5vw;
  border-radius: 3vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.account-device-item-remove:hover {
  background-color: #d7d7d7;
}

.account-device-item-title {
  font-family: "Roboro", Arial;
  font-size: 1.4vw;
  font-weight: 500;
  padding-left: 0.6vw;
}

.account-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}

.account-infos-item-disabled {
  background-color: #f0f0f0;
  border: 1px solid black;
  width: 20vw;
  height: 3vw;
  border-radius: 1.2vw;
  padding-left: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  cursor: not-allowed;
}

.account-infos-item-enabled {
  background-color: white;
  border: 1px solid black;
  width: 20vw;
  height: 3vw;
  border-radius: 1.2vw;
  padding-left: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
}

.account-infos-item img {
  width: 2.5vw;
  margin-left: 0.7vw;
  cursor: pointer;
}

.account-infos-item p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.7vw;
}

.account-infos-item-value {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1vw;
}

.account-infos-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.account-options {
  position: absolute;
  top: 5vw;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  background-color: white;
  border-radius: 0 0 0 1vw;
}

.account-options-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 1vw;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-weight: 500;
  width: 100%;
}

.account-options-item:hover {
  background-color: #f0f0f0;
  border-radius: 1vw 0 0 1vw;
}

.account-options-item img {
  width: 2vw;
  margin-right: 1vw;
}

.alert-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.alert-buttons img {
  margin-left: 5vw;
  margin-right: 5vw;
  width: 3vw;
  border: 1.5px solid black;
  border-radius: 4vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.alert-button-cancel:hover, .alert-button-cancel-text:hover {
  background-color: #ffb1b1;
}

.alert-button-confirm:hover, .alert-button-confirm-text:hover {
  background-color: #bbffb1;
}

.alert-button-cancel-text, .alert-button-confirm-text {
  border: 1.5px solid black;
  width: 9vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: white;
  cursor: pointer;
  font-family: "Roboto", Arial;
  font-size: 1.4vw;
  margin-left: 2vw;
  margin-right: 2vw;
}

.alert-checkbox-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  cursor: pointer;
}

.alert-checkbox-option img {
  width: 2.5vw;
  margin-right: 0.5vw;
}

.alert-collection-colors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5vw;
  width: 90%;
}

.alert-collection-colors span {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 2vw;
  cursor: pointer;
}

.alert-collection-color-orange {
  background-color: rgb(255, 196, 0);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-orange:hover {
  border: 3px solid rgb(226, 121, 1);
}

.alert-collection-color-red {
  background-color: rgb(255, 51, 44);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-red:hover {
  border: 3px solid rgb(172, 0, 0);
}

.alert-collection-color-purple {
  background-color: rgb(238, 0, 255);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-purple:hover {
  border: 3px solid rgb(125, 0, 214);
}

.alert-collection-color-blue {
  background-color: rgb(0, 157, 255);
  border: 3px solid white;
  transition: border 0.15s;
}

.alert-collection-color-blue:hover {
  border: 3px solid rgb(0, 8, 165);
}

.alert-collection-color-green {
  background-color: rgb(137, 235, 0);
  border: 2px solid white;
  transition: border 0.15s;
}

.alert-collection-color-green:hover {
  border: 3px solid rgb(0, 119, 34);
}

.alert-collection-color-active {
  border: 3px solid black;
}

.alert-collection-delete {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  font-weight: 500;
  width: 100%;
  margin-top: 4vw;
  margin-bottom: 1vw;
}

.alert-collection-delete p {
  background-color: rgba(255, 0, 0, 0.4);
  padding: 1vw;
  border-radius: 3vw;
  border: 2px solid rgb(255, 255, 255);
  color: black;
  cursor: pointer;
  transition: background-color 0.15s;
}

.alert-collection-delete p:hover {
  background-color: white;
  border: 2px solid rgb(255, 0, 0);
  color: rgb(255, 0, 0);
}

.alert-collection-error {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.alert-collection-input {
  box-sizing: border-box;
  width: 100%;
  height: 3vw;
  border: 1.5px solid black;
  border-radius: 4vw;
  padding-left: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
}

.alert-collection-input::placeholder {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
}

.alert-collection-subtitle {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  margin-bottom: 1.5vw;
  text-align: left;
  width: 100%;
}

.alert-container {
  background-color: white;
  width: 35vw;
  height: auto;
  border: 2px solid black;
  border-radius: 3.5vw;
  z-index: 60;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alert-container-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.alert-message {
  font-family: "Roboto", Arial;
  font-weight: 400;
  font-size: 1.3vw;
  text-align: center;
  margin-bottom: 3vw;
  max-width: 35vw;
}

.alert-quiz-list {
  border: 1.5px solid black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border-radius: 1vw;
  margin-bottom: 2vw;
  max-height: 6.5vw;
  overflow-y: scroll;
  width: 90%;
}

.alert-quiz-list-item {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  width: 100%;
  padding: 0.5vw;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s;
  border-radius: 1vw;
  box-sizing: border-box;
}

.alert-quiz-list-item:hover {
  background-color: #f0f0f0;
}

.alert-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 2.5vw;
  margin-bottom: 3vw;
  text-align: center;
}

.biblio-container {
  box-sizing: border-box;
  padding-bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  font-family: "Roboto", Arial;
  margin-left: 2vw;
  margin-right: 2vw;
}

.biblio-container a {
  color: black;
  display: flex;
  flex-direction: row;
  margin-bottom: 1vw;
}

.biblio-container img {
  width: 1.5vw;
  margin-left: 0.5vw;
}

.biblio-issue-button {
  color: black;
  font-size: 1.5vw;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  border: none;
  background-color: #6de900;
  border-radius: 1vw;
  cursor: pointer;
  margin-top: 2vw;
  transition: background-color 0.15s;
}

.biblio-issue-button:hover {
  background-color: #5ec900;
}

.biblio-subtitle {
  font-size: 1.4vw;
  font-weight: 500;
  margin-bottom: 1vw;
  margin-top: 1vw;
}

.biblio-text {
  font-size: 1.4vw;
  text-align: justify;
}

.biblio-title {
  font-weight: 500;
  font-size: 1.7vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
}

.blur-container {
  position: fixed;
  top: 5vw;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.15);
}

.cards-biblio-text {
  cursor: pointer;
  transition: color 0.15s;
}

.cards-biblio-text:hover {
  color: black;
}

.cards-end-count-text {
  margin-right: 1vw;
  padding-top: 1vw;
  padding-bottom: 2vw;
  text-align: center;
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  color: #a7a7a7;
}

.cards-infos-title {
  width: 3vw;
  cursor: pointer;
  margin-left: 1vw;
}

.container {
  --uib-size: 45px;
  --uib-color: black;
  --uib-speed: 2.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--uib-size);
  width: var(--uib-size);
}

.slice {
  position: relative;
  height: calc(var(--uib-size) / 6);
  width: 100%;
}

.slice::before,
.slice::after {
  --uib-a: calc(var(--uib-speed) / -2);
  --uib-b: calc(var(--uib-speed) / -6);
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - var(--uib-size) / 12);
  height: 100%;
  width: calc(100% / 6);
  border-radius: 50%;
  background-color: var(--uib-color);
  flex-shrink: 0;
  animation: orbit var(--uib-speed) linear infinite;
  transition: background-color 0.3s ease;
}

.slice:nth-child(1)::after {
  animation-delay: var(--uib-a);
}

.slice:nth-child(2)::before {
  animation-delay: var(--uib-b);
}

.slice:nth-child(2)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b));
}

.slice:nth-child(3)::before {
  animation-delay: calc(var(--uib-b) * 2);
}
.slice:nth-child(3)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 2);
}

.slice:nth-child(4)::before {
  animation-delay: calc(var(--uib-b) * 3);
}
.slice:nth-child(4)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 3);
}

.slice:nth-child(5)::before {
  animation-delay: calc(var(--uib-b) * 4);
}
.slice:nth-child(5)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 4);
}

.slice:nth-child(6)::before {
  animation-delay: calc(var(--uib-b) * 5);
}
.slice:nth-child(6)::after {
  animation-delay: calc(var(--uib-a) + var(--uib-b) * 5);
}

@keyframes orbit {
  0% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }
  5% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.684208);
    opacity: 0.58;
  }
  10% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.631576);
    opacity: 0.51;
  }
  15% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.578944);
    opacity: 0.44;
  }
  20% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.526312);
    opacity: 0.37;
  }
  25% {
    transform: translateX(0%) scale(0.47368);
    opacity: 0.3;
  }
  30% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.526312);
    opacity: 0.37;
  }
  35% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.578944);
    opacity: 0.44;
  }
  40% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.631576);
    opacity: 0.51;
  }
  45% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.684208);
    opacity: 0.58;
  }
  50% {
    transform: translateX(calc(var(--uib-size) * -0.25)) scale(0.73684);
    opacity: 0.65;
  }
  55% {
    transform: translateX(calc(var(--uib-size) * -0.235)) scale(0.789472);
    opacity: 0.72;
  }
  60% {
    transform: translateX(calc(var(--uib-size) * -0.182)) scale(0.842104);
    opacity: 0.79;
  }
  65% {
    transform: translateX(calc(var(--uib-size) * -0.129)) scale(0.894736);
    opacity: 0.86;
  }
  70% {
    transform: translateX(calc(var(--uib-size) * -0.076)) scale(0.947368);
    opacity: 0.93;
  }
  75% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
  80% {
    transform: translateX(calc(var(--uib-size) * 0.076)) scale(0.947368);
    opacity: 0.93;
  }
  85% {
    transform: translateX(calc(var(--uib-size) * 0.129)) scale(0.894736);
    opacity: 0.86;
  }
  90% {
    transform: translateX(calc(var(--uib-size) * 0.182)) scale(0.842104);
    opacity: 0.79;
  }
  95% {
    transform: translateX(calc(var(--uib-size) * 0.235)) scale(0.789472);
    opacity: 0.72;
  }
  100% {
    transform: translateX(calc(var(--uib-size) * 0.25)) scale(0.73684);
    opacity: 0.65;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5vw;
  border-bottom: 0.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  z-index: 10;
}

.header-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  height: 80%;
  width: 20vw;
}

.header-buttons img {
  height: 80%;
}

.header-buttons img:hover {
  cursor: pointer;
}

.search-button, .biblio-button {
  margin-right: 3vw;
}

.js-account-buttons-toggle {
  margin-right: 1vw;
}

.header-current-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 2px solid black;
  border-radius: 3vw;
  width: auto;
  min-width: 10vw;
  cursor: pointer;
  position: relative;
}

.header-current-user img {
  width: 2vw;
}

.header-current-user p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  margin-left: 1vw;
  margin-right: 1vw;
}

.header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 1vw;
}

.header-title:hover {
  cursor: pointer;
}

.header-title-and-version {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.header-title-beta {
  font-family: "Roboto", Arial;
  font-size: 1vw;
  border: 1.5px solid black;
  border-radius: 2vw;
  padding-left: 0.3vw;
  padding-right: 0.3vw;
  margin-left: 0.3vw;
}

.header-title img {
  width: 5vw;
}

.header-title-p {
  margin-left: 0.5vw;
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 2.5vw;
}

.header-title-version {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  margin-left: 1vw;
}

.header-title-version-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.header-user-change-item, .header-user-change-item-add, .header-user-change-item-last {
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  transition: background-color 0.15s;
  text-align: center;
  inline-size: 100%;
  overflow-wrap: break-word;
  word-break: break-all;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  box-sizing: border-box;
}

.header-user-change-item-add {
  border-radius: 0 0 1vw 1vw;
  color: #969696;
  font-style: italic;
}

.header-user-change-item-last {
  border-radius: 0 0 1vw 1vw;
}

.header-user-change-item:hover, .header-user-change-item-add:hover, .header-user-change-item-last:hover {
  background-color: #f0f0f0;
}

.header-user-change-menu {
  position: absolute;
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  top: 1vw;
  left: -2px;
  right: -2px;
  padding-top: 1.2vw;
  box-sizing: border-box;
  border-radius: 0 0 1vw 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hide-overflow {
  overflow: hidden;
}

.library-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 99%;
  height: 100%;
}

.library-item {
  width: 15vw;
  height: 15vw;
  background-color: #f0f0f0;
  border-radius: 3vw;
  border: 1px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.library-item img {
  width: 3vw;
}

.library-item p {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  margin-top: 1vw;
}

.loading-screen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.loading-screen p {
  font-family: "Roboto", Arial;
  font-size: 3vw;
  font-weight: 600;
  margin-bottom: 3vw;
}

.login-button {
  border: 2px solid black;
  border-radius: 1.2vw;
  height: 80%;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 1vw;
  margin-left: 1vw;
  background: none;
  padding-left: 1vw;
  padding-right: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1vw;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
  transition: background-color 0.15s;
}

.login-button:hover {
  background-color: black;
  color: white;
}

.main-container {
  display: flex;
  flex-direction: column;
  margin-top: 7vw;
  margin-left: 16vw;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.main-container-add-collection {
  width: 2.5vw;
  margin-left: 1.5vw;
  cursor: pointer;
  border: 2px solid black;
  border-radius: 1vw;
  transition: background-color 0.15s;
}

.main-container-add-collection:hover {
  background-color: #f0f0f0;
}

.main-container-back {
  width: 2.5vw;
  margin-right: 1vw;
  cursor: pointer;
  border: 2px solid black;
  border-radius: 1vw;
  transition: background-color 0.15s;
}

.main-container-back:hover {
  background-color: #f0f0f0;
}

.main-container-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  color: #c1c1c1;
  text-align: center;
  margin-top: 7vw;
  margin-bottom: 7vw;
}

.main-container-scroll {
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  margin-left: 16vw;
  margin-top: 7vw;
}

.main-container-sort {
  width: 3vw;
  margin-left: 2vw;
  cursor: pointer;
  border: none;
  border-radius: 3vw;
  padding: 0.3vw;
  transition: background-color 0.15s;
}

.main-container-sort:hover {
  background-color: #f0f0f0;
}

.main-container-title {
  font-family: "Roboto", Arial;
  font-size: 2.2vw;
  font-weight: 500;
}

.note-add-collection-menu {
  position: absolute;
  background-color: white;
  border: 1px solid black;
  border-radius: 1vw;
  top: 14vw;
  left: 1vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  max-height: 14vw;
  overflow-y: scroll;
}

.note-add-collection-menu-item {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  box-sizing: border-box;
  border-radius: 1vw;
  background-color: white;
  transition: background-color 0.15s;
}

.note-add-collection-menu-item:hover {
  background-color: #f0f0f0;
}

.note-add-collection-menu-title {
  font-family: "Roboto", Arial;
  font-size: 1.3;
  font-weight: 600;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid black;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
}

.note-hover, .note {
  position: relative;
  border: 0.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 15vw;
  height: 15vw;
  border-radius: 3.5vw;
  margin: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.15s;
}

.note-hover:hover, .note:hover {
  cursor: pointer;
  background-color: rgba(216, 216, 216, 0.7);
}

.note-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 3.5vw;
}

.note-buttons {
  position: absolute;
  left: 1vw;
  right: 1vw;
  bottom: 1vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.note-like, .note-add, .note-remove {
  width: 2vw;
  background-color: white;
  padding: 0.5vw;
  border: 1px solid black;
  border-radius: 4vw;
  transition: background-color 0.15s;
}

.note-like:hover, .note-add:hover, .note-remove:hover {
  cursor: pointer;
  background-color: #d7d7d7;
}

.note .note-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.2vw;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  padding: 0;
}

.note-hover .note-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.2vw;
  text-align: center;
  margin-bottom: 3.5vw;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  padding: 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
}

p {
  margin: 0;
  padding: 0;
}

.page-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.popup-container {
  border: 1px solid black;
  padding: 4vw;
  border-radius: 2vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(34deg, rgb(190, 255, 209) 0%, rgb(242, 255, 242) 100%);
}

.popup-container-title {
  font-family: "Roboto", Arial;
  font-size: 2.5vw;
  font-weight: 600;
  margin-bottom: 3vw;
}

.popup-error-message {
  font-family: "Roboto", Arial;
  font-size: 1.1vw;
  color: red;
  margin-top: 1vw;
  margin-bottom: 2vw;
}

.popup-field {
  border: 1px solid black;
  width: 20vw;
  height: 4vw;
  margin-top: 2vw;
  border-radius: 3vw;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding-left: 1.5vw;
  font-size: 1.3vw;
  font-family: "Roboto", Arial;
}

.popup-field::placeholder {
  font-size: 1.3vw;
  font-family: "Roboto", Arial;
}

.popup-info-text {
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  width: 25vw;
  text-align: center;
}

.popup-main-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 20vw;
}

.popup-text-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.popup-text-buttons p {
  font-family: "Roboto", Arial;
  font-size: 1vw;
  cursor: pointer;
}

.popup-text-buttons p:hover {
  text-decoration: underline;
}

.popup-validate-button {
  border: 1.5px solid rgb(0, 230, 65);
  width: 8vw;
  height: 3vw;
  border-radius: 3vw;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.2vw;
  font-family: "Roboto", Arial;
  font-weight: 500;
  color: black;
  background: linear-gradient(34deg, rgb(0, 199, 56) 0%, rgb(77, 254, 77) 100%);
  cursor: pointer;
  transition: border 0.15s;
}

.popup-cancel-button {
  border: 1.5px solid rgb(255, 173, 79);
  width: 8vw;
  height: 3vw;
  border-radius: 3vw;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 1.2vw;
  font-family: "Roboto", Arial;
  font-weight: 500;
  color: black;
  background: linear-gradient(34deg, rgb(255, 136, 0) 0%, rgb(255, 222, 104) 100%);
  cursor: pointer;
  transition: border 0.15s;
}

.popup-validate-button:hover, .popup-cancel-button:hover {
  border: 1.5px solid black;
}

.quiz-add-button {
  width: 30vw;
  height: 5vw;
  border: 1.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 2vw;
  background-color: white;
  margin-top: 2vw;
  margin-bottom: 4vw;
  margin-left: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quiz-add-button:hover {
  background-color: #f0f0f0;
}

.quiz-add-button img {
  width: 3vw;
  margin-right: 1vw;
}

.quiz-add-button p {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
}

.quiz-content-container {
  margin-left: 1vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.quiz-content-list {
  display: flex;
  flex-direction: column;
}

.quiz-content-list-item {
  font-family: "Roboto", Arial;
  margin-bottom: 0.5vw;
}

.quiz-content-list-item-button {
  font-family: "Roboto", Arial;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.quiz-content-list-item-button img {
  width: 2vw;
  margin-left: 1vw;
  cursor: pointer;
}

.quiz-content-list-item-button img:hover {
  background-color: #f0f0f0;
}

.quiz-content-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
}

.quiz-grid {
  margin-top: 1vw;
  margin-right: 1vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}

.quiz-grid-item {
  width: 30vw;
  height: 5vw;
  border: 1.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 1vw;
  margin-bottom: 3vw;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
}

.quiz-green {
  background-color: rgb(137, 235, 0) !important;
  transition: background-color 0.15s !important;
}

.quiz-green:hover {
  background-color: rgb(119, 204, 0) !important;
}

.quiz-text-green {
  color: rgb(137, 235, 0) !important;
}

.quiz-orange {
  background-color: rgb(255, 196, 0) !important;
  transition: background-color 0.15s !important;
}

.quiz-orange:hover {
  background-color: rgb(255, 166, 0) !important;
}

.quiz-text-orange {
  color: rgb(255, 196, 0) !important;
}

.quiz-red {
  background-color: rgb(255, 51, 44) !important;
  transition: background-color 0.15s !important;
}

.quiz-red:hover {
  background-color: rgb(227, 24, 17) !important;
}

.quiz-text-red {
  color: rgb(255, 51, 44) !important;
}

.quiz-blue {
  background-color: rgb(0, 157, 255) !important;
  transition: background-color 0.15s !important;
}

.quiz-blue:hover {
  background-color: rgb(0, 123, 255) !important;
}

.quiz-text-blue {
  color: rgb(0, 157, 255) !important;
}

.quiz-purple {
  background-color: rgb(238, 0, 255) !important;
  transition: background-color 0.15s !important;
}

.quiz-purple:hover {
  background-color: rgb(211, 0, 230) !important;
}

.quiz-text-purple {
  color: rgb(238, 0, 255) !important;
}

.quiz-history-container {
  box-sizing: border-box;
  margin-top: 1vw;
  margin-bottom: 2vw;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  overflow-x: scroll;
  padding: 1vw;
}

.quiz-history-item {
  flex: 0 0 auto;
  width: 15vw;
  height: 15vw;
  border: 1px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 3vw;
  margin-right: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Roboto", Arial;
}

.quiz-history-item-date, .quiz-history-item-score-detail {
  font-size: 1.3vw;
}

.quiz-history-item-score {
  font-size: 2.5vw;
  font-weight: 500;
}

.quiz-main-buttons {
  display: flex;
  flex-direction: row;
  padding: 1vw;
  width: 100%;
  box-sizing: border-box;
  padding-right: 20vw;
  justify-content: space-between;
}

.quiz-play-icon {
  width: 2.3vw;
  margin-right: 1vw;
}

.search-bar {
  border: 1px solid black;
  width: 40vw;
  height: 3.5vw;
  border-radius: 4vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-left: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
}

.search-bar::placeholder {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
}

.search-center-container {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 1vw;
  margin-bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.search-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.search-error-text {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  color: rgb(233, 0, 0);
  margin-top: 2vw;
}

.search-submit-button {
  height: 3.5vw;
  cursor: pointer;
  margin-left: 1vw;
}

.settings-danger-button {
  border: none;
  background-color: rgba(255, 0, 0, 0.4);
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  padding-left: 1vw;
  padding-right: 1vw;
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  border-radius: 0.7vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.settings-danger-button:hover {
  background-color: rgba(255, 0, 0, 0.6);
}

.settings-section {
  width: 100%;
  margin-left: 30vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.settings-section-switch {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.settings-section-switch img {
  width: 4vw;
  cursor: pointer;
  margin-left: 2vw;
  margin-right: 2vw;
}

.settings-section-switch p {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  font-weight: 500;
}

.settings-section-title {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1vw;
}

.settings-vertical-container {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.sidebar {
  position: fixed;
  top: 5vw;
  left: 0;
  bottom: 0;
  width: 15vw;
  border-right: 0.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  background-color: white;
  transition: background-color 0.15s;
}

.sidebar-item:hover, .sidebar-item-current:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.sidebar-item img, .sidebar-item-current img {
  width: 3vw;
  margin-bottom: 0.5vw;
}

.sidebar-item p, .sidebar-item-current p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.5vw;
  text-align: center;
}

.sidebar-item-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  background-color: #f0f0f0;
  transition: background-color 0.15s;
}

.sort-container {
  position: relative;
}

.sort-container-menu {
  position: absolute;
  border: 1px solid black;
  border-radius: 1vw;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-evenly;
  width: 17vw;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sort-container-menu-item {
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  cursor: pointer;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 1vw;
  border-radius: 1vw;
  transition: background-color 0.15s;
}

.sort-container-menu-item:hover {
  background-color: #f0f0f0;
}

.sort-container-menu-item img {
  width: 2vw;
  margin-right: 1vw;
}

.sort-container-menu-item-current {
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  cursor: pointer;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 1vw;
  border-radius: 1vw;
  background-color: #f0f0f0;
}

.sort-container-menu-item-current img {
  width: 2vw;
  margin-right: 1vw;
}

.subscription-item-current {
  background-color: #f0f0f0;
  border: 1px solid black;
  border-radius: 1.5vw;
  width: 100%;
  height: 5vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 1vw;
  padding-right: 1vw;
  margin-bottom: 3vw;
  box-sizing: border-box;
}

.subscription-item-current img {
  width: 3vw;
  margin-right: 1vw;
}

.subscription-item-current p {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.3vw;
}

.subscription-item-current-infos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.subscription-item-current-manage {
  background-color: rgb(255, 168, 217);
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 0.5vw;
  padding-top: 0.5vw;
  border-radius: 0.7vw;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  transition: border 0.15s;
}

.subscription-item-current-manage:hover {
  border: 2px solid black;
}

.subscription-item {
  background-color: #f0f0f0;
  border: 1px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 20vw;
  border-radius: 1.7vw;
}

.subscription-item-feature, .subscription-item-feature-off {
  font-family: "Roboto", Arial;
  font-weight: 400;
  font-size: 1.1vw;
  margin-bottom: 0.5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subscription-item-feature-off {
  color: #a7a7a7;
  text-decoration: line-through;
}

.subscription-item-feature img, .subscription-item-feature-off img {
  width: 1.9vw;
  margin-right: 1vw;
}

.subscription-item-feature p, .subscription-item-feature-off p {
  max-width: 15vw;
}

.subscription-item-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  border-top: 1px solid black;
  padding-top: 1vw;
}

.subscription-item-icon {
  width: 3vw;
  margin-bottom: 0.5vw;
}

.subscription-item-price {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.1vw;
  margin-bottom: 1vw;
}

.subscription-item-subscribe-button {
  background-color: rgb(103, 255, 57);
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 0.5vw;
  padding-top: 0.5vw;
  border-radius: 0.7vw;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  transition: border 0.15s;
  font-family: "Roboto", Arial;
  font-size: 1.2vw;
  font-weight: 500;
  margin-top: 1vw;
}

.subscription-item-subscribe-button:hover {
  border: 2px solid black;
}

.subscription-item-title {
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: 1.3vw;
  margin-bottom: 0.5vw;
}

.subscription-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.subscription-main-container {
  margin-right: 15vw;
  margin-left: 15vw;
  margin-top: 3vw;
  margin-bottom: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5vw;
}

.subscription-title {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  text-align: left;
  width: 100%;
  margin-bottom: 1vw;
}

.theme {
  position: relative;
  margin-top: 5vw;
  margin-left: 4vw;
  margin-right: 4vw;
  height: 6vw;
  border-radius: 1.5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Roboto", Arial;
  color: black;
  font-size: 1.7vw;
  font-weight: 500;
}

.theme-blue {
  background-color: rgb(0, 157, 255);
  border: 1.5px solid black;
  transition: background-color 0.15s;
}

.theme-blue:hover {
  background-color: rgb(0, 123, 255);
}

.theme-green {
  background-color: rgb(137, 235, 0);
  border: 1.5px solid black;
  transition: background-color 0.15s;
}

.theme-green:hover {
  background-color: rgb(119, 204, 0);
}

.theme-orange {
  background-color: rgb(255, 196, 0);
  border: 1.5px solid black;
  transition: background-color 0.15s;
}

.theme-orange:hover {
  background-color: rgb(255, 166, 0);
}

.theme-purple {
  background-color: rgb(238, 0, 255);
  border: 1.5px solid black;
  transition: background-color 0.15s;
}

.theme-purple:hover {
  background-color: rgb(211, 0, 230);
}

.theme-red {
  background-color: rgb(255, 51, 44);
  border: 1.5px solid black;
  transition: background-color 0.15s;
}

.theme-red:hover {
  background-color: rgb(227, 24, 17);
}

.theme-edit-button {
  position: absolute;
  width: 2.3vw;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid black;
  border-radius: 2vw;
  padding: 0.4vw;
  right: 1.5vw;
  transition: background-color 0.15s;
}

.theme-edit-button:hover {
  background-color: white;
}

.themes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vw;
}