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

.incard-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: 0.1vw;
  padding-right: 0.1vw;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  box-sizing: border-box;
  border-radius: 1vw;
  background-color: white;
  transition: background-color 0.15s;
  cursor: pointer;
  text-align: center;
}

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

.incard-main-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 2vw;
  padding-right: 2vw;
}

.incard-card {
  height: 100%;
  border: 1px solid black;
  box-sizing: border-box;
  border-radius: 3vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin-right: 4vw;
}

.incard-card-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.incard-card-collection, .incard-card-quiz {
  position: relative;
}

.incard-card-description {
  font-family: "Roboto", Arial;
  font-size: 1.3vw;
  margin-bottom: 2vw;
}

.incard-card-infos {
  height: 100%;
  width: 100%;
  padding-top: 3vw;
  padding-bottom: 1vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  min-width: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.incard-card-infos-spacer {
  flex: 1 1 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  min-width: 0;
}

.incard-card-like, .incard-card-add, .incard-card-quiz-add {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin-right: 1.5vw;
  border: 2px solid black;
  padding: 0.7vw;
  border-radius: 1.3vw;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.15s;
}

.incard-card-like img, .incard-card-add img, .incard-card-quiz-add img {
  width: 2vw;
}

.incard-card-like p, .incard-card-add p, .incard-card-quiz-add p {
  font-family: "Roboto", Arial;
  font-size: 1.1vw;
  margin-left: 1vw;
}

.incard-card-add, .incard-card-quiz-add {
  z-index: 50;
}

.incard-card-add:hover {
  background-color: rgb(110, 190, 255);
}

.incard-card-like:hover {
  background-color: rgba(255, 0, 191, 0.5);
}

.incard-card-quiz-add:hover {
  background-color: rgb(255, 194, 103);
}

.incard-card-related-carousel {
  min-width: 0;
  width: calc(100% + 3vw);
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  overflow-x: scroll;
  box-sizing: border-box;
  padding: 1vw;
}

.incard-card-related-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  width: 100%;
  min-width: 0;
}

.incard-card-related-title {
  font-family: "Roboto", Arial;
  font-size: 1.5vw;
  font-weight: 500;
  margin-top: 2vw;
}

.incard-card-title {
  font-family: "Roboto", Arial;
  font-size: 3vw;
  font-weight: 500;
  margin-bottom: 3vw;
}

.incard-center-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  height: 95%;
  width: 100%;
  min-width: 0;
}

.incard-close-button {
  position: absolute;
  right: 1vw;
  top: 1vw;
  width: 3vw;
  background-color: white;
  border: 2px solid black;
  border-radius: 3vw;
  cursor: pointer;
  transition: background-color 0.15s;
}

.incard-close-button:hover {
  background-color: #f0f0f0;
}

.incard-note {
  position: relative;
  border: 0.5px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 10vw;
  height: 10vw;
  border-radius: 2.5vw;
  margin-right: 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;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
}

.incard-note p {
  font-family: "Roboto", Arial;
  font-weight: 400;
  font-size: 1vw;
  text-align: center;
  margin: 0;
  padding: 0;
}

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

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