$size: 45px;

.add-button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  width: $size;
  height: $size;

  color: white;

  background-color: var(--accent-color-bg);
  border-radius: calc(#{$size} / 2);
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-fff);
}
