﻿body {
    background-color: #FEF8F1;
    
}
.divc {
    display: flex;
    justify-content: center;
}
.hide {
    display: none !important;
}
.divider {
    width: 5px;
    height: auto;
    display: inline-block;
}
.fila-con-margen-derecho .aspNetButton { /* O el ID/clase de tu botón */
    margin-right: 20px;
}
div.card {
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: left;
}
.logo img {
    display: block;
    width: auto;
    height: auto;
}

.ancho-textbox{
    width:100%;
}
.contenedor-imagenes {
    display: flex; /* Permite alinear los elementos en línea */
    justify-content: space-between; /* Separa los elementos en los extremos */
    align-items: center; /* Opcional: centra verticalmente si tienen alturas diferentes */
}

    .contenedor-imagenes img {
        /* Opcional: Define el ancho de las imágenes si es necesario */
        max-width: 50%; /* Ajusta el porcentaje según necesites */
        height: auto;
    }

.imagen-alineada-izquierda {
    /*float: center;*/
    justify-items:center;
    max-width: 100%;
    margin-left:auto; 
   /* Añade un espacio para que el texto no se pegue a la imagen */
}

.imagen-alineada-derecha {
    /*float: right;*/
    display:block;
    margin-left: auto ; /* Añade un espacio para que el texto no se pegue a la imagen */
}
.banner-image {
    width: 90%; /* Ejemplo de tamaño */
    height: 90%; /* Ejemplo de tamaño */
    display: block; /* Para que ocupe su propio espacio si es necesario */
    margin: 0 auto; /* Centra el banner si está dentro de un contenedor */
    display: flex; /* Habilita el modelo Flexbox */
    justify-content: center; /* Centra horizontalmente el contenido */
    align-items: center; /* Centra verticalmente el contenido */
}
.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.contenedor-botones {
    display: flex; /* Activa el modelo de caja flexible */
    justify-content: center; /* Centra los elementos horizontalmente */
    align-items: center; /* Centra los elementos verticalmente */
    /* Opcional: para que los botones se vean uno al lado del otro */
    /* flex-wrap: wrap; */
}


table {
    border-collapse: collapse;
    width: 100%;
}

.modalBackground {
    background-color: Black;
    filter: opacity(90);
    opacity: 0.4;
}

.modalPopup 
{
    margin-top:0px;
    background-color: #FFFFFF;
    width: 80%;
    height: 90%;
    border: 3px solid #9F9F9F;
    border-radius: 15px;
}

    .modalPopup .header {
        background-color: white;
        height: 7%;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-radius: 15px;
    }

    .modalPopup .body {
        min-height: 50px;
        line-height: 30px;
        text-align: center;
        padding: 5px;
    }

    .modalPopup .footer {
        padding: 3px;
    }

    .modalPopup .button {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }

    .modalPopup td {
        text-align: left;
    }

.compartir {
    border-radius: 20%;
    border-color: green;
    margin-right: 4px;
    margin-top: 4px;
}
.rounded_corners {
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

    .rounded_corners td, .rounded_corners th {
        border: 1px solid rgba(0, 0, 0, 0.2);
        font-family: Arial;
        font-size: 10pt;
        text-align: center;
    }

    .rounded_corners table table td {
        border-style:  solid;
    }
.GridRounded {
    width: 100%;
    border: solid 1px #525252;
    border-collapse: collapse;
    border-radius: 15px;
}

    .GridRounded th {
        padding: 4px 2px;
        color: #fff;
        background: #424242 url(grd_head.png) repeat-x top;
        /* border-left: solid 1px #525252;*/
        font-size: medium;
        /*border-radius: 5px;*/
    }

    .GridRounded td {
        padding: 3px;
        border: 1.5px groove;
        color: black;
        height: 30px;
        font-size: medium;
    }

    .GridRounded .alt {
        background: white repeat-x top;
    }

.roundbox {
    border: 1px solid #b3b3b3;
    background: white;
    width: 200px;
    height: 30px;
    border-radius: 5px;
}