.o-registry-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.o-registry-steps .o-registry-step {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.o-registry-steps .o-registry-step.active {
  opacity: 1;
}
.o-registry-steps .o-registry-step.active .o-registry-step__number {
  color: white;
}
.o-registry-steps .o-registry-step.active .o-registry-step__number::before {
  background-color: var(--color-primary);
}
.o-registry-steps .o-registry-step__number {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-registry-steps .o-registry-step__number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  border-radius: 50%;
  z-index: -1;
}
.o-registry-steps .o-registry-step:last-child .o-registry-step__line {
  display: none;
}
@media screen and (min-width: 480px) {
  .o-registry-steps .o-registry-step:last-child .o-registry-step__line {
    display: none;
  }
}
.o-registry-steps .o-registry-step__line {
  height: 0.1rem;
  width: 1.5rem;
  display: none;
  background-color: var(--color-primary);
}
@media screen and (min-width: 480px) {
  .o-registry-steps .o-registry-step__line {
    display: block;
  }
}

.o-registry-list-created {
  margin-bottom: 5rem;
}
.o-registry-list-created__steps {
  min-width: 100%;
}
.o-registry-list-created__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 5rem;
  border-bottom: 1px solid black;
  text-align: center;
}
.o-registry-list-created__inner p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created__inner p {
    margin-bottom: 2rem;
  }
}
.o-registry-list-created h2 {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created h2 {
    margin-bottom: 4rem;
  }
}
.o-registry-list-created__step {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created__step {
    width: calc(33% - 2rem);
  }
}
@media screen and (min-width: 1100px) {
  .o-registry-list-created__step {
    width: calc(33% - 4rem);
  }
}
.o-registry-list-created__step h4 {
  margin: 0.5rem 0 2.5rem;
  font-family: var(--ff-tertiary);
  letter-spacing: var(--letter-spacing-lg);
  font-weight: 500;
  line-height: var(--body-lh-md);
}
.o-registry-list-created__icon {
  max-height: 2rem;
  max-width: 2rem;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created__icon {
    max-height: 2.5rem;
    max-width: 2.5rem;
  }
}
.o-registry-list-created__images {
  margin: 5rem 0 0;
}
.o-registry-list-created__pagination {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created__pagination {
    margin-top: 2.5rem;
  }
}
.o-registry-list-created__pagination .swiper-pagination {
  position: relative;
}
.o-registry-list-created__pagination .swiper-pagination .swiper-pagination-bullet {
  height: 0.9rem;
  width: 0.9rem;
  margin: 0 1rem;
  background: transparent;
  border: 1px solid var(--color-primary);
}
.o-registry-list-created__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.o-registry-list-created__image {
  max-width: 100%;
  height: auto;
}
.o-registry-list-created__gif {
  width: 100%;
  height: 100%;
}
.o-registry-list-created__gif-wrapper {
  max-width: 37.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 4.5rem;
  margin-bottom: 1.6rem;
}
.o-registry-list-created__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}
.o-registry-list-created__buttons .btn {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-registry-list-created__buttons .btn {
    width: auto;
  }
}
