:root {
    --primary-color: rgb(11, 78, 179);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.cuerpo {
    font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 100vh;
}
/* Global Stylings */
label {
    display: block;
    margin-bottom: 0.5rem;
}

input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

.width-50 {
    width: 50%;
}

.ml-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}

/* Progressbar */
.progressbar {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

    .progressbar::before,
    .progress {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 4px;
        width: 46%;
        background-color: #dcdcdc;
        z-index: -1;
    }

.progress {
    background-color: var(--primary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .progress-step::before {
        counter-increment: step;
        content: counter(step);
    }

    .progress-step::after {
        content: attr(data-title);
        position: absolute;
        top: calc(100% + 0.5rem);
        font-size: 0.85rem;
        color: #666;
    }

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

/* Form */
.form {
    width: clamp(320px, 30%, 430px);
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 0.35rem;
    padding: 1.5rem;
}

.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

.input-group {
    margin: 2rem 0;
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }

    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}

/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

    .btn:hover {
        box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
    }


@media (min-width: 1280px) {
    .col-xl-2 {
        -ms-flex: 0 0 16.66666667%; /* Para IE */
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
}


@keyframes tilt {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(-15deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(15deg);
    }

    90% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}





.contenedor_loader_envio_ticket {
    background-color: #d7dee0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.enviando_ticket_loader {
    border: 12px double #29aaf5;
    border-radius: 50%;
    border-top: 12px double #d7dee0;
    width: 100px;
    height: 100px;
    animation: animation_loader_ticket_send 1.3s ease-in-out infinite;
    font-weight: bolder;
}

@keyframes animation_loader_ticket_send {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#mensaje_de_enviando_ticket {
    color: #29aaf5;
    font-family: courier;
    font-size: 20px;
    margin-top: 30px;
    margin-left: 5px;
    font-weight: bolder;
}

@media (max-width: 768px) {

    .quitar_padding_para_moviles {
        padding: 0 !important;
    }
}



.estilo-icono {
     color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
    transition: color 0.3s ease-in-out;
}

.btn:hover .estilo-icono,
.btn:active .estilo-icono {
    color: white !important; /* Se vuelve blanco en hover o click */
}