.add-popup {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--colour-accent);
  padding: var(--spacing-internal);
  z-index: 9;
  width: 100%;
  border: solid 1px var(--colour-border);
  border-top-width: 7px;
  border-top-color: var(--colour-two);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.add-popup .la,
.add-popup .las {
  font-size: var(--font-size-2-var);
}
.add-popup__title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.add-popup__title .title {
  margin-left: 5px;
}
.add-popup__title__icon {
  color: var(--colour-link);
}
.add-popup__content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.add-popup__content__count__number:before {
  content: "(";
}
.add-popup__content__count__number:after {
  content: ")";
}
.add-popup__content__count__label {
  margin-left: 5px;
}
.add-popup__content__link {
  color: var(--colour-link);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.add-popup__content__link__icon {
  margin-left: 5px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.add-popup__content__link:hover .add-popup__content__link__icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.add-popup--open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .add-popup {
    width: 280px;
    display: block;
    border-top-width: 1px;
    border-top-color: var(--colour-border);
    border-left-width: 7px;
    border-left-color: var(--colour-two);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .add-popup__content {
    margin-top: 10px;
    margin-left: 0;
  }
  .add-popup--open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}