.music .music-tracks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1000px;
  font-size: 1rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
.music .music-tracks .music-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: black;
}
.music .music-tracks .music-track__number {
  color: black;
  margin-right: 0.2rem;
}
@media (min-width: 1000px) {
  .music .music-tracks .music-track__number {
    margin-right: 1rem;
  }
}
.music .music-tracks .music-track__title {
  flex-grow: 1;
  margin: 0 1rem;
  font-size: 1rem;
  color: #0000FE;
}
.music .music-tracks .music-track__title-album {
  display: none;
}
@media (min-width: 1000px) {
  .music .music-tracks .music-track__title-album {
    font-size: 0.8rem;
    display: block;
    color: black;
  }
}
.player.active .music .music-tracks .music-track__title-album {
  color: #ffffff;
}
.music .music-tracks .music-track__duration {
  margin-left: 1rem;
  font-size: 1rem;
  color: #F80305;
}
.music .music-tracks .player {
  display: flex;
  align-items: center;
  border: 2px solid transparent;
  margin-right: 12px;
  max-width: 700px;
}
.music .music-tracks .player.active {
  border: 2px dotted black;
}
.music .music-tracks .player.active .music-track__title-album {
  color: black;
}
.music .music-tracks .hidden {
  display: none;
}
.music__discover {
  color: #0000FE;
  margin: 0;
  margin-top: 5vh;
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .music__discover {
    margin: 0;
  }
}

.navbar {
  position: fixed;
  top: 2vh;
  right: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-end;
  padding-right: 20px;
  z-index: 1000;
  gap: 10px;
}
.navbar .navbar__link {
  text-decoration: none;
  font-size: 18px;
  background-color: white;
  padding: 0;
}
.navbar .navbar__link:nth-child(1) {
  color: #38A333;
}
.navbar .navbar__link:nth-child(1):hover {
  background-color: #38A333;
  color: #ffffff;
}
.navbar .navbar__link:nth-child(2) {
  color: #0000FE;
}
.navbar .navbar__link:nth-child(2):hover {
  background-color: #0000FE;
  color: #ffffff;
}
.navbar .navbar__link:nth-child(3) {
  color: #F80305;
}
.navbar .navbar__link:nth-child(3):hover {
  background-color: #F80305;
  color: #ffffff;
}

.section__ecco {
  margin: auto;
  padding: 8vw;
  display: flex;
  justify-content: space-around;
  align-items: start;
  z-index: -1;
  gap: 2rem;
}
@media (max-width: 768px) {
  .section__ecco {
    padding: 4vw;
    flex-direction: column;
    align-items: center;
  }
}

.bold {
  font-weight: bold;
  font-size: larger;
}

.section__index {
  margin: auto;
  padding: 8vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: -1;
  gap: 2rem;
}
@media (max-width: 1100px) {
  .section__index {
    flex-direction: column;
    padding: 4vw;
  }
}
.section__index .svg-container {
  position: absolute;
  top: 80%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 768px) {
  .section__index .svg-container {
    top: auto;
    bottom: -10%;
    left: 90%;
    transform: translateX(-50%);
  }
}

.box {
  padding: 1rem;
  margin: 0;
  font-size: 1rem;
  max-width: 600px;
  text-align: left;
  position: relative;
  border: 1.5px solid black;
}
.box::after {
  content: "";
  background-color: white;
  z-index: -1;
  position: absolute;
  border: 1.5px solid black;
  top: 0.8rem;
  left: -0.8rem;
  width: 100%;
  height: 100%;
}
.box__text {
  color: #38A333;
  margin-top: 0.5rem;
}
.box__text-span {
  color: #0000FE;
}
.box__album img {
  width: 90%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
  display: block;
}
.box__link {
  display: flex;
  justify-content: end;
  color: #F80305;
  text-decoration: none;
  text-transform: uppercase;
}
.box__link:hover {
  text-decoration: underline;
}
.box__titleindex {
  font-size: 1rem;
  color: #F80305;
  font-weight: 400;
  text-transform: uppercase;
}
.box__title {
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  font-size: 1rem;
  color: #F80305;
  font-weight: 400;
  text-transform: uppercase;
}
.box__subtitle {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #F80305;
  font-weight: 400;
  text-transform: uppercase;
}
.box__enditems {
  margin: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .box__enditems {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.section__year0001 {
  margin: auto;
  padding: 8vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: -1;
  gap: 2rem;
}
@media (max-width: 1100px) {
  .section__year0001 {
    padding: 4vw;
    flex-direction: column;
  }
}
.section__year0001--albums {
  margin: 0 10vh;
}
.section__year0001--albums img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.receipt {
  font-size: 0.75rem;
  max-width: 280px;
  min-width: 220px;
  margin: 0 auto;
  border: 1px solid #000000;
  padding: 15px;
  color: #000000;
  line-height: 1.2;
  text-transform: uppercase;
}
.receipt__logo {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem 0;
}
.receipt__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}
.receipt__address {
  text-align: center;
  margin: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.receipt__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.receipt__detail p {
  margin: 0;
}
.receipt__detail p:first-child {
  text-align: left;
  font-weight: bold;
}
.receipt__detail p:last-child {
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.receipt__transaction-details {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #000000;
  font-size: 0.7rem;
  margin: 0.8rem;
}
.receipt__transaction-details > p {
  margin: 0;
  flex: 1;
}
.receipt__transaction-details > p:first-child {
  text-align: left;
}
.receipt__transaction-details > p:last-child {
  text-align: right;
}
.receipt__payment-details {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.8rem;
  border-top: 1px dashed #000000;
  font-weight: bold;
}
.receipt__payment-details > p {
  margin: 0;
}
.receipt__payment-details > p:first-child {
  text-align: left;
}
.receipt__payment-details > p:last-child {
  text-align: right;
}
.receipt__center-item {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.receipt__center-item--bold {
  font-weight: bold;
  font-size: 0.8rem;
}
.receipt__item {
  text-align: center;
  margin: 0.3rem 0;
}
.receipt__coupons {
  border-top: 1px dashed #000000;
  padding-top: 0.8rem;
}
.receipt__coupons .receipt__coupon-container {
  text-align: center;
}
.receipt__coupons .receipt__coupon-container .receipt__discount {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 0;
}
.receipt__coupons .receipt__coupon-container .receipt__expiration {
  font-size: 0.7rem;
  margin-top: 0.4rem;
}
.receipt__coupons .receipt__coupon-container .receipt__expiration .receipt__item {
  margin: 0.3rem 0;
}
.receipt-footer {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 0.6rem;
  text-align: center;
  color: #333;
}
.receipt-separator {
  border-top: 1px dashed #000000;
  margin: 0.5rem 0;
}
.receipt-thank-you {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.receipt-transaction-id {
  margin-bottom: 0.5rem;
}
.receipt-return-policy {
  margin-top: 0.5rem;
  font-style: italic;
}
.receipt-website {
  cursor: pointer;
  color: #000000;
  margin-top: 0.5rem;
  text-decoration: underline;
}
.receipt-website a {
  color: #000000;
}

@-webkit-keyframes scale {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes scale {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes scaleReverse {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes scaleReverse {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.pageTrans {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
}

.pageTrans.active {
  display: block;
  pointer-events: all;
}

.pageTrans .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: rgb(255, 255, 255);
  border: 1px solid black;
  transform: scaleX(0);
  transform-origin: left center;
  -webkit-animation: scale 0.5s forwards, scaleReverse 0.5s forwards 1s;
          animation: scale 0.5s forwards, scaleReverse 0.5s forwards 1s;
}

.pageTrans div:nth-child(1) {
  top: 0;
  -webkit-animation-delay: 0s, 1s;
          animation-delay: 0s, 1s;
}

.pageTrans div:nth-child(2) {
  top: 25vh;
  -webkit-animation-delay: 0.1s, 1.1s;
          animation-delay: 0.1s, 1.1s;
}

.pageTrans div:nth-child(3) {
  top: 50vh;
  -webkit-animation-delay: 0.2s, 1.2s;
          animation-delay: 0.2s, 1.2s;
}

.pageTrans div:nth-child(4) {
  top: 75vh;
  -webkit-animation-delay: 0.3s, 1.3s;
          animation-delay: 0.3s, 1.3s;
}

.content {
  display: none;
}

.content:not(.hidden) {
  display: flex;
}

.hidden {
  display: none;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background-color: transparent;
}
.footer__link {
  text-decoration: none;
  font-size: 18px;
  background-color: white;
  padding: 0;
}
.footer__link:nth-child(1) {
  color: #0000FE;
}
.footer__link:nth-child(1):hover {
  background-color: #0000FE;
  color: #ffffff;
}
.footer__link:nth-child(2) {
  color: #38A333;
}
.footer__link:nth-child(2):hover {
  background-color: #38A333;
  color: #ffffff;
}
.footer__link:nth-child(3) {
  color: #F80305;
}
.footer__link:nth-child(3):hover {
  background-color: #F80305;
  color: #ffffff;
}

@font-face {
  font-family: "VG5000";
  src: url("../assets/fonts/VG5000-Regular_web.woff");
}
@font-face {
  font-family: "telma";
  src: url("../assets/fonts/Telma-Variable.ttf");
}
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: url("../assets/images/cursor.png"), auto;
}

::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "unibody-8-new", sans-serif;
  letter-spacing: -1px;
  font-weight: 400;
}

/*# sourceMappingURL=app.css.map*/