/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 12, 2016, 4:14:18 PM
    Author     : Javier
*/

/*body{
    background: #FFF;
}*/

.aditional-information{
    color: white;
}

.technical-requirements{
    background: rgba(0, 113, 206, 0.3);
    color: #FFF;
    vertical-align: middle;
    font-size: 0.75rem;
    padding: 10px;
}

.technical-requirements img{
    vertical-align: middle;
    margin: 0px 3px;
    max-height: 15px;
}

.sponsor{
    background: #eff0f3;
}

.sponsor img{
    max-height: 100px;
}

.card-login{
    color: #000;
}

.codigo-origen{
    opacity: 0.2;
}

.proteccion-datos{
    font-size: 0.8rem;
    color: #7b7b7b;
}

.card .card-content .card-title{
    font-size: 1.5rem;
    text-align: center;
}

.go-event{
    background-color: #ebb50e !important;
}

.tbl-articulos label{
    display: block;
}

main .row:first-child{
    margin-top: 1%;
}

.card-left {
    background: linear-gradient(135deg, #E7004C, #E7004C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 41.666667%;
    
}

.card-left-content {
    text-align: center;
    padding: 2rem;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    min-height: 450px;
}

.card-right {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 58.333333%;
}

@media only screen and (max-width: 600px) {
    .card {
        flex-direction: column;
        min-height: auto;
    }
}

@media only screen and (max-width: 600px) {
    .card-left, .card-right {
        flex: 0 0 100%;
        min-height: 250px;
    }
}

/* Overlay centrado */
.toast-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

/* Caja del toast */
.toast-box {
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    animation: fadeInDown 0.4s ease;
    z-index: 9999;
}

/* Botones */
.toast-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.toast-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.toast-buttons button.atras {
    background: #ccc;
    color: #333;
}

.toast-buttons button.sig {
    background: #007EE5;
    color: #fff;
}

.toast-buttons button:hover {
    opacity: 0.9;
}

/* Animaciones */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-30px); }
}

