/* SLIDE FINAL [START] */
.slide-final {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* TITLE */
.slide-final__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.slide-final__title p {
    margin: 0;
    padding: 0;
}

/* TEXT */
.slide-final__text {
    color: rgba(49, 49, 49, 0.7);
    font-size: 18px;
    font-weight: 400;
    margin-top: 16px;
}

.slide-final__text p {
    margin: 0;
    padding: 0;
}

/* QR CODE */
.qr-code {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
}

.qr-code__title {
    color: rgba(49, 49, 49, 0.7);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.qr-code__title p {
    margin: 0;
    padding: 0;
}

.qr-code__image {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 288px;
    height: 288px;
    padding: 16px;
    border-radius: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.qr-code__image img {
    display: block;
    width: 256px;
    height: 256px;
}

/* CONFETTI */
.confetti-list {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

.confetti {
    background-color: #F2D74E;
    display: block;
    width: 15px;
    height: 15px;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: left top;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.confetti-active .confetti {
    opacity: 1;
    -webkit-animation: confetti 5s ease-in-out -2s infinite;
    -moz-animation: confetti 5s ease-in-out -2s infinite;
    animation: confetti 5s ease-in-out -2s infinite;
}

.confetti:nth-child(1)  { background-color: #F2D74E; left:  10%; animation-delay: 0s; }
.confetti:nth-child(2)  { background-color: #95C3DE; left:  20%; animation-delay: -5s; }
.confetti:nth-child(3)  { background-color: #FF9A91; left:  30%; animation-delay: -3s; }
.confetti:nth-child(4)  { background-color: #F2D74E; left:  40%; animation-delay: -2.5s; }
.confetti:nth-child(5)  { background-color: #95C3DE; left:  50%; animation-delay: -4s; }
.confetti:nth-child(6)  { background-color: #FF9A91; left:  60%; animation-delay: -6s; }
.confetti:nth-child(7)  { background-color: #F2D74E; left:  70%; animation-delay: -1.5s; }
.confetti:nth-child(8)  { background-color: #95C3DE; left:  80%; animation-delay: -2s; }
.confetti:nth-child(9)  { background-color: #FF9A91; left:  90%; animation-delay: -3.5s; }
.confetti:nth-child(10) { background-color: #F2D74E; left: 100%; animation-delay: -2.5s; }

@keyframes confetti {
      0% { transform: rotateZ(15deg) rotateY(0deg) translate(0, 0); }
     25% { transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh); }
     50% { transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 60vh); }
     75% { transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 80vh); }
    100% { transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 110vh); }
}
/* SLIDE FINAL [END] */