/*Evento de Conexión Empieza*/

/*Evento OFFLINE*/
.eventOffline{
    cursor: default;
    position: fixed;
    top: 105%;
    left: 0;
    min-height: 100vh;
    background: rgba(95, 50, 50, 0.5);
    height: 100%;
    width: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
.eventOffline.offline{
    top: 0;
}

.eventOffline .container{
    width:35%;
    height: 35%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 7px;
    box-shadow: 0 0 7px #000;
    border: 2px solid rgb(170, 88, 56);
    padding: 1rem;
    gap: 1rem;
}
.eventOffline .container .heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 5px;
}
.eventOffline .container .heading i{
    padding: .5rem;
    border-radius: 50%;
    border: 2px solid red;
    color: red;
}
.eventOffline .container .heading p{
    color: #ffffff;
    padding: .5rem;
    border-radius: 5px;
    background: rgb(255, 57, 57);
    font-weight: 800;
    letter-spacing: 1px;
}
.eventOffline .container .textForm{
    color: #ff0000;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-align: center;
    border-radius: 5px;
    padding:.5rem ;
}
.eventOffline .container .fakeBtn{
    margin-top: auto;
    padding: .5rem 1rem;
    background: rgb(255, 57, 57);
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
/*Evento OFFLINE*/


/*Evento ONLINE*/
.eventOnline{
    cursor: default;
    position: fixed;
    top: 105%;
    left: 0;
    min-height: 100vh;
    background: rgba(59, 77, 59, 0.5);
    height: 100%;
    width: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
.eventOnline.online{
    top: 0;
}

.eventOnline .container{
    width:35%;
    height: 35%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 7px;
    box-shadow: 0 0 7px #000;
    border: 2px solid green;
    padding: 1rem;
    gap: 1rem;
}
.eventOnline .container .heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 5px;
}
.eventOnline .container .heading i{
    padding: .5rem;
    border-radius: 50%;
    background:#c1dfd4;
    color:#008035;
}
.eventOnline .container .heading p{
    color:#008035;
    padding: .5rem;
    border-radius: 5px;
    background:#c1dfd4;
    font-weight: 800;
    letter-spacing: 1px;
}
.eventOnline .container .textForm{
    color: #008035;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-align: center;
    background:#c1dfd4;
    border-radius: 5px;
    padding:.5rem ;
}
.eventOnline .container .fakeBtnTwo{
    margin-top: auto;
    padding: .5rem 1rem;
    background:#36a77d;
    color: #fff;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.eventOnline .container .fakeBtnTwo:hover{
    background: #11a03c;
}
/*Evento ONLINE*/


/*Evento de Conexión Termina*/



@media(max-width:1200px){
    .eventOnline .container,
    .eventOffline .container{
        width: 85%;
    }
}