body {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    scale: 0.5;
    animation: circle-animation 3s linear infinite;
    background-color: white;
    /* box-shadow: 0 0 0 0 #89fcff; */
}

@keyframes circle-animation {
    0% {
        opacity: 0;
        box-shadow: 0 0 0 0 #89fcff;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(0.75);
    }
    100% {
        opacity: 0;
        box-shadow: 0 0 70px 30px #89fcff;
        transform: scale(0);
    }
}




nav.main-header.navbar.navbar-expand.navbar-blue.navbar-dark.border-bottom-0 {
    display: none;
}

.content-wrapper {
    margin-left: 70% !important;
}

footer.main-footer {
    display: none;
}

.wrapper.ew-layout {
    margin: 0;
    box-shadow: 0 0 0 0 transparent;
    border: 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;  /* Asegura que el div ocupa al menos la altura completa de la ventana */
}


.card{
    --bs-card-border-color: transparent;
}

.content-header {
    display: none;
}

.Banderas-centrado {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

img.banderas{
    width: 20px;
    height: 20px;
}

nav.main-header.navbar.navbar-expand.navbar-light.border-bottom-0 {
    display: none;
}

body{
    overflow-y: hidden;
}

.warningNotif {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    background-color: #ffadad !important;
    border-radius: 5px;
    border: 1px solid #cf5959;
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}
