.content {
    background-color: rgba(255, 255, 255, 0.7) !important; /* 50% opacidad - Máxima transparencia */
    /*backdrop-filter: blur(12px) brightness(1.1) !important;*/ /* Desenfoque intenso + brillo */
    color: #333 !important;
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Borde luminoso */
    position: relative;
    overflow: hidden;
}


/*Todos los botones que usen esta hoja de estilos seran morado Gandhi y de un tono mas claro de este mismo color al pasr sobre ellos */
.btn-primary, .btn-primary:active, .btn-primary:visited {
    background-color: #8B189B !important;
    color: white;
}

    .btn-primary:hover {
        background-color: #9e27ae !important;
    }

@font-face {
    font-family: 'GandhiSans-Regular';
    src: url(../../fonts/gandhisans-regular.otf);
}


.content {
    background-color:#5f177ded;
    /*float: left;*/
    /*width: 600px;*/
    /*height: 100%;*/
    /*padding: 0px 20px 0px 0px;*/
    padding-top: 5px;
    /*margin: 0px 5px 0px 5px;*/
    /*display: inline;*/
    /*overflow: hidden;*/
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}



a {
    color: #f8ea0d
}

label {
    color: #f7e9f8;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}




/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */


/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lockWindow {
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: #fff;
    background-color: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
}


/* ******************************* Radio botones ********************************/

/* El contenedor */
.contenedor {
    position: relative;
    padding-left: 25px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Oculta el boton que tiene por defecto el navegador */
    .contenedor input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Crea un radio boton personalizado */
.checkmark {
    position: absolute;
    top: 3px;
    left: 4px;
    height: 15px;
    width: 15px;
    background-color: #ccc;
    border-radius: 50%;
    border: 1px solid #272626;
}

/* Al pasar el mouse, agrega el color gris de fondo */
.contenedor:hover input ~ .checkmark {
    background-color: #ccc;
}

/* Cuando el radio boton esta seleccionado agrega el fondo morado */
.contenedor input:checked ~ .checkmark {
    border: 3px solid #8B189B;
    border-radius: 50%;
}

/* Estilo del indicador (punto) */
.contenedor .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}
/***************************************** Checkbox ***************************************************/

/* The container */
.chkbx_con {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .chkbx_con input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark_sqr {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border: 1px solid #8B189B;
}

/* On mouse-over, add a grey background color */
.chkbx_con:hover input ~ .checkmark_sqr {
    background-color: #ccc;
    border: 1px solid #8B189B;
}

/* When the checkbox is checked, add a blue background */
.chkbx_con input:checked ~ .checkmark_sqr {
    background-color: #8B189B;
    border: 1px solid #8B189B;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark_sqr:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkbx_con input:checked ~ .checkmark_sqr:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkbx_con .checkmark_sqr:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

