.ladder-card,
.slidingHorizontal h1 {
    text-shadow: 0.2rem 0.2rem 0.4rem #000;
}

.ladder-card p {
    margin-bottom: 1.2rem;
}

header .header-logo img {
    width: 6.5rem;
    margin: 2.1rem 0 0.4rem;
}

h1 {
    font-size: 2.8rem;
}

footer h3 {
    margin-bottom: 1.6rem;
}

footer .footer-value {
    font-size: 2rem;
    margin-bottom: 2.8rem;
}

footer .btn,
footer .btn.animated {
    background: #116eee;
    box-shadow: 0 0.8rem 1.2rem rgba(0, 0, 0, 0.4);
    border-radius: 2.5rem;
    border: none;
    font-weight: 500;
    font-size: 2.8rem;
}

footer .btn.animated {
    margin-top: 0;
}

.floating-label-group input:focus~.floating-label,
.floating-label-group input:not(:focus):valid~.floating-label {
    color: #fe918d;
}

.form-control:focus {
    border: 0.3rem solid #fe918d;
}

footer .btn.disabled {
    background-color: #e3262e;
    opacity: 0.32;
    max-width: 34.4rem;
    width: 90vw;
}

footer .btn,
footer .btn.animated {
    max-width: 34.4rem;
    width: 90vw;
}

.box[style] {
    border-color: #fe918d !important;
}

.confetti {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #116eee;
    position: absolute;
    left: 50%;
    animation: confetti 5s ease-in-out -2s infinite;
    transform-origin: left top;
}

.confetti:nth-child(1) {
    background-color: #116eee;
    left: 10%;
    animation-delay: 0;
}

.confetti:nth-child(2) {
    background-color: #116eee;
    left: 20%;
    animation-delay: -5s;
}

.confetti:nth-child(3) {
    background-color: #116eee;
    left: 30%;
    animation-delay: -3s;
}

.confetti:nth-child(4) {
    background-color: #116eee;
    left: 40%;
    animation-delay: -2.5s;
}

.confetti:nth-child(5) {
    background-color: #116eee;
    left: 50%;
    animation-delay: -4s;
}

.confetti:nth-child(6) {
    background-color: #116eee;
    left: 60%;
    animation-delay: -6s;
}

.confetti:nth-child(7) {
    background-color: #fff;
    left: 70%;
    animation-delay: -1.5s;
}

.confetti:nth-child(8) {
    background-color: #fff;
    left: 80%;
    animation-delay: -2s;
}

.confetti:nth-child(9) {
    background-color: #fff;
    left: 90%;
    animation-delay: -3.5s;
}

.confetti:nth-child(10) {
    background-color: #116eee;
    left: 100%;
    animation-delay: -2.5s;
}

.confetti:nth-child(11) {
    background-color: #fff;
    left: 72%;
    animation-delay: -5.5s;
}

.confetti:nth-child(12) {
    background-color: #116eee;
    left: 34%;
    animation-delay: -2.8s;
}

.confetti:nth-child(13) {
    background-color: #116eee;
    left: 100%;
    animation-delay: -7.5s;
}

.confetti:nth-child(14) {
    background-color: #fff;
    left: 16%;
    animation-delay: -8.5s;
}

.error {
    color: #fff;
}

footer .btn.disabled {
    background-color: rgb(169, 169, 169);
}

@keyframes confetti {
    0% {
        transform: rotateZ(15deg) rotateY(0) 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);
    }
}