#darkBack {
  width: 100%;
  height: 100vh;
  background: rgba(76, 56, 75, 0.15);
}

#popUp {
  z-index: 99;
  position: fixed;
  max-width: 350px;
  background: #eee;
  border: 7px solid #fff;
  top: 50%;
  transform: translate(-100%, -50%);
  margin-left: -425px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  padding-bottom: 3rem;
  animation: slideRightPopUp 0.3s ease-in;
  animation-fill-mode: forwards;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

#new span {
  background: #fff;
  position: absolute;
  color: var(--color-primary);
  padding: 4px 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -5px;
}

#popUp .close {
  color: #464646;
  right: 8px;
  top: 0px;
  position: absolute;
  font-size: 20px;
  cursor: pointer;
}

#popUp h2 {
  font-size: 17px;
  color: #464646;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

#body {
  height: 1200px;
  background: #eee;
}

a.button {
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
}

#plus {
  position: fixed;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  margin-left: 0px;
  -webkit-transition: all 1.25s ease;
  -moz-transition: all 1.25s ease;
  -o-transition: all 1.25s ease;
  transition: all 1.25s ease;
  cursor: pointer;
  text-align: left;
  letter-spacing: 1px;
}

#plus span {
  position: absolute;
  left: -6px;
}

#plus::after {
  content: "";
  display: block;
  display: relative;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid var(--color-primary);
}

@media all and (max-width: 900px) {
  #popUp {
    margin-left: -425px;
  }
  #plus {
    margin-left: 0px;
  }
}

.popUp-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.popUp-content * {
  display: block;
}
