body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, sans-serif !important;
    background-color: #fbfbfb;
}

.payment2-content {
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}
.payment2 {
    background-color: #fbfbfb !important;
}
.winner {
    text-align: center;
}

.winner h2 {
    font-size: 3em;
    font-weight: bold;
}

.winner h1 {
    display: block;
    font-size: 5rem;
    color: #0a54b3;
    text-transform: uppercase;
    word-break: break-all;
    font-weight: bold;
}

.winner h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.number {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    width: 1.75rem;
    height: 2.5rem;
    background: #141414;
    background: linear-gradient(0deg, #141414, #626262);
    border-radius: .375rem;
    box-shadow: rgba(100, 100, 111, .2) 0 .5rem .5rem 0;
}

.blink {
    animation: blink 1s ease-in-out infinite;
}

.form-container, .sidebar {
    background: #fff;
    box-shadow: rgba(100, 100, 111, .2) 0 .5rem .5rem 0;
    padding: 1rem;
}

.main__title {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}

hr {
    margin: .75rem 0;
}

.label {
    font-size: .875rem;
    line-height: 1;
}

.ui-input {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    padding: .45rem;
    border: 1px solid #d1d5db;
    border-radius: .25rem;
    color: #333;
}

.ui-input::placeholder {
    color: #d1d5db;
}

.ui-form__submit {
    margin: 0;
}

.ui-form__submit-button {
    border-radius: .25rem;
    padding: .55rem;
    height: auto;
    background: #6472e1;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background-color .2s linear, filter .2s linear;
}

.ui-form__submit-button:hover {
    background-color: #4c56a9;
}

.sidebar-total-text {
    font-size: 1.5rem;
}

.sidebar-total-price {
    font-weight: 600;
    font-size: 1.75rem;
}

.side-bg__product-image {
    height: 80px;
    width: auto;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.product__name {
    font-weight: 500;
    font-size: 1rem;
}

.card-pos {
    position: relative;
}

.form-cards {
    position: absolute;
    right: 5px;
    height: 23px;
    top: 50%;
    transform: translateY(-50%);
}

.cvv-img {
    transform: translateY(-54%);
}

.terms {
    margin-top: 4rem;
}


@media (max-width: 768px) {
    .winner h2 {
        font-size: 2rem;
    }

    .winner h1 {
        font-size: 3rem;
    }

    .winner h3 {
        font-size: 1.25rem;
    }
}

@keyframes blink {
    0%, to {
        color: #fff
    }

    50% {
        color: #fff3
    }
}