/***********CONFIGURACION ENTORNO***********/


/*Modo Oscuro*/
html[data-bs-theme="dark"] .logo {
    content: url("/images/logo-dark.png");
}

html[data-bs-theme="dark"] p {
    color: white;
}

/* Carga de las fuentes */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Aplicación de estilos según las especificaciones de la imagen */
body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.6;
}

/* Titulares */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: bold;
    font-style: italic;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: bold;
    font-style: italic;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
}

/* Texto del cuerpo */
p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

/***********FIN CONFIGURACION ENTORNO***********/
/***********ELEMENTOS HTML***********/
/*Link*/
.link:hover {
    text-decoration: none;
}

a.non-clickable {
    pointer-events: none;
    cursor: default;
}

.reset-link {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    cursor: auto;
    border: none;
    padding: 0;
    margin: 0;
}


/*Pesta�as*/
#fichaLeadTabs .nav-link:hover {
    background-color: rgba(13, 162, 228, 0.35);
    transition: background-color 0.3s ease;
}

.tabs-ficha .nav-link:hover {
    color: rgba(255,255,255);
}

.tabs-ficha .nav-link {
    color: rgba(255,255,255, 0.75);
    font-weight: 600;
}

    .tabs-ficha .nav-link.active {
        color: var(--bs-primary);
    }

#fichaInmuebleTabs .nav-link:hover {
    background-color: rgba(13, 162, 228, .35);
    transition: background-color 0.3s ease;
}

#sidebar a:not(.no-hover-effect):hover {
    background-color: rgb(178 226 247 / 35%);
    transition: background-color 0.3s ease;
}

.dropend button:hover {
    background: rgb(178 226 247 / 35%);
    transition: background-color 0.3s ease;
}


/*Table*/
table a {
    color: var(--bs-body-color);
}

.table-group-divider {
    border-top-color: var(--bs-primary);
}

.table-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .table-grid > div {
        display: flex;
        flex-direction: column;
    }


/*Label*/
label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*Sidebar*/
/*#sidebar-toggler {
    position: absolute;
    left: 100%;
    bottom: 25px;
    z-index: 99;
}

#sidebar-offcanvas-toggler {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 99;
}*/


/*Navbar*/
/*aside nav .nav-link {
    margin: 3px;
    color: #6f6f6f !important;*/
/*color: var(--bs-primary) !important;*/
/*}

    aside nav .nav-link i::before {
        font-weight: 600 !important;
    }

aside nav .active {
    color: #fff !important;
}

aside .nav-pills .nav-link:hover {
    color: var(--bs-primary) !important;
}

aside .nav-pills .nav-link:active {
    color: var(--bs-primary) !important;
    background: var(--bs-primary-bg-subtle) !important;
}*/


/*Buttons*/
/* Animaci�n para todos los botones de Bootstrap */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .btn:hover,
    .btn:focus {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        outline: none;
    }

    .btn:active {
        transform: scale(0.95);
    }

    .btn.btn-primary {
        color: #fff;
    }


/*Table*/
.table-hover td {
    transition: border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

.table-hover tr:hover td {
    border-bottom: 2px solid #0099FF;
}

/*Tabla Inmueble*/
.inmueble-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    vertical-align: middle;
}

table.text-center td {
    vertical-align: middle;
}


/*Form*/
.form-full-width {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.form-container {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

/***********FIN ELEMENTOS HTML***********/




/***********VISTAS***********/

/*LOGIN*/
.login-container {
    max-width: 350px;
    padding: 15px;
}


.login-background {
    background-image: url("/images/background.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px) brightness(70%);
}

/*FirstLogin*/

.firstLogin-container {
    max-width: 550px;
    padding: 15px;
}

.welcome-container {
    border-bottom: 2px solid #0099FF;
    padding-bottom: 20px;
}

.welcome-title {
    color: #0099FF;
    font-weight: bold;
    margin-bottom: 15px;
}

.welcome-subtitle {
    color: #333; /* Color gris oscuro */
    font-weight: lighter;
}

.welcome-divider {
    width: 50px;
    height: 4px;
    background-color: #0099FF;
    margin: 20px auto;
}


/*Request Info*/

.requestInfo-body {
    min-width: 100vw;
    min-height: 100vh;
}

.requestInfo-container {
    padding: 0px 15px 0 15px;
}

.scaled-content {
    transform: scale(0.85);
    transform-origin: top center;
}


.requestInfo-background {
    background-image: url("/images/background.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px) brightness(70%);
}



/*Todo Correcto*/
.todoCorrecto-container {
    max-width: 650px;
    padding: 15px;
}


/*HOME*/
/*cards*/
.card.card-home {
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid #F2F2F2;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card.card-home:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    }

    .card.card-home img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
    }

    .card.card-home .card-text {
        margin-top: 3%;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; /* Esta propiedad mostrar� los "..." cuando el texto sobrepase el tama�o del contenedor. */
    }

.card-panel.card-home-panel {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid #F2F2F2;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card.card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

.card.card-home img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.card.card-home .card-text {
    margin-top: 3%;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Esta propiedad mostrar� los "..." cuando el texto sobrepase el tama�o del contenedor. */
}

/*notas*/
.nota {
    transition: transform 0.2s, box-shadow 0.2s;
}

    .nota:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    }

/*Imagenes*/
.imagen-fija {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

a.imagen-link {
    text-decoration: none;
    color: black;
}

    a.imagen-link:hover,
    a.imagen-link:focus,
    a.imagen-link:active {
        text-decoration: none;
        color: black;
    }

#divImagenNoticia img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

/***********FIN VISTAS***********/



/***********SWEETALERT***********/
.swal-footer {
    display: flex;
    justify-content: space-around;
}
/***********FIN SWEETALERT***********/



/***********UTILIDADES***********/

/*BASICAS*/
.no-scroll {
    overflow: hidden;
}

.shadow {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

/*Loader*/
#loader {
    position: absolute;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-content: center;
    color: var(--bs-primary);
    background-color: rgba(0, 0, 0, 0.5);
}

    #loader > div {
        width: 5rem;
        height: 5rem;
    }


/*VALIDACIONES FIELDS*/

/*Input a rojo*/
.input-invalid {
    border-color: #ff7070 !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25) !important;
    transition: all 0.3s ease-in-out !important;
}

    .input-invalid:hover {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    }

div.validation-summary-errors {
    margin-bottom: 3%;
}

    div.validation-summary-errors ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
    }

.has-error {
    border-color: #dc3545 !important;
    outline: 0;
    box-shadow: 0 0 0 0.05rem rgba(255, 180, 180, 0.5) !important; /* boxShadow a�n m�s suave */
    transition: all 0.3s ease-in-out !important;
}

    .has-error:hover {
        box-shadow: 0 0 6px rgba(255, 150, 150, 0.5); /* Reduzco a�n m�s la intensidad y transparencia */
    }


/*Asterisco en label*/
.required-field::after {
    /*    content: "\F4CB"; 
    font-family: "bootstrap-icons";
    color: #dc3545;
    padding-left: 0.5rem;*/
    content: '\F151'; /* bi-asterisk */
    font-family: bootstrap-icons;
    font-size: .7rem;
    margin: .3rem;
    vertical-align: text-top;
    color: var(--bs-primary);
}

/*Animacion Inputs*/
/*.input-custom {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

    .input-custom:hover,
    .input-custom:focus {
        transform: scale(1.01) !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
        outline: none !important;
    }*/

.input-custom.shadow-sm {
    box-shadow: none !important;
}

.form-control.shadow-sm {
    box-shadow: none !important;
}

.form-select.shadow-sm {
    box-shadow: none !important;
}

/*Animacion Toasts*/
@keyframes spinFadeIn {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(1);
    }

    60% {
        opacity: 1;
        transform: rotateY(0) scale(1);
    }

    70% {
        transform: rotateY(0) scale(1.01);
    }

    75% {
        transform: rotateY(0) scale(0.995);
    }

    80% {
        transform: rotateY(0) scale(1.01);
    }

    85% {
        transform: rotateY(0) scale(0.995);
    }

    90% {
        transform: rotateY(0) scale(1.01);
    }

    95% {
        transform: rotateY(0) scale(0.995);
    }

    100% {
        transform: rotateY(0) scale(1);
    }
}

.toast-custom {
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform-origin: right center;
    animation: spinFadeIn 1.2s forwards;
}

    .toast-custom .toast-body {
        padding: 10px 20px;
    }


/***********FIN UTILIDADES***********/



/***********CREACIONES***********/

/*Alerta Customizada*/
/*.alert-custom { --> Antigua
    border: 1px solid #f8d7da;
    background-color: #f8d7da20;
    color: #842029;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 0.875em;
}*/

.alert-custom {
    border: 2px solid #f8d7da;
    background-color: #f8d7da30;
    color: #842029;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.alert-success-custom {
    border: 2px solid #28a745;
    background-color: #28a74530;
    color: #1e6530;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}


/* Estilo para el modo oscuro */
/*html[data-bs-theme="dark"] .alert-custom { --> Antigua
    border: 1px solid #7a0000;
    background-color: #450000;
    color: #f1f1f1;*/
/* Las dem�s propiedades se mantienen igual */
/*padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 0.875em;
}*/

html[data-bs-theme="dark"] .alert-custom {
    border: 2px solid #7a0000;
    background-color: #450000;
    color: #f1f1f1;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}


/*Badge Customizado*/
.badge-custom {
    display: inline-block;
    background-color: #f8d7da;
    color: #842029;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    margin-left: 5px;
    vertical-align: middle;
}


/*Cuadro SUBIDA ARCHIVOS DROP*/
.dropzone {
    border: 2px dashed #cccccc;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

    .dropzone p {
        text-align: center;
        font-size: 1.2em;
        margin-bottom: 20px;
    }

        .dropzone p i {
            font-size: 2em;
            margin-bottom: 10px;
            display: block;
        }

.img-container {
    position: relative;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px; /* Ajuste de margen */
}

    .img-container img {
        max-width: 100%;
        max-height: 100px;
        width: auto;
        height: auto;
        margin: auto;
        display: block;
        border-radius: 4px 4px 0 0;
        user-drag: none;
    }

        .img-container img.selected {
            border-radius: 0;
        }

    .img-container .btn-delete {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: white;
        border: none;
        border-radius: 50%;
        padding: 5px;
        font-size: 0.8em;
        color: #dc3545;
        width: 30px;
        height: 30px;
    }

        .img-container .btn-delete:hover {
            color: white;
            background-color: #dc3545;
        }

    .img-container .principal {
        display: none;
        background-color: #007BFF;
        color: white;
        padding: 5px;
        border-radius: 0 0 4px 4px;
    }

    .img-container img.selected + .principal {
        display: block;
    }



/*FICHA INMUEBLE*/
.image-container {
    position: relative;
}

    .image-container img.imagenInmueble {
        width: 100%;
        height: 200px; /* O el tama�o que desees */
        object-fit: cover; /* Asegura que la imagen se ajuste sin estirarse */
    }

    /* Estilo espec�fico para la imagen principal */
    .image-container img.imagenPrincipal {
        height: 450px;
    }

    .image-container .btn-delete {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: white;
        border: none;
        border-radius: 50%;
        padding: 5px;
        font-size: 0.8em;
        color: #dc3545;
        width: 30px;
        height: 30px;
    }

        .image-container .btn-delete:hover {
            color: white;
            background-color: #dc3545;
        }


.btn-convert {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: white;
    border: none;
    border-radius: 50%;
    padding: 5px;
    font-size: 0.8em;
    color: #28a745; /* color verde bootstrap */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* sombra ligera para destacar */
}

    .btn-convert:hover {
        color: white;
        background-color: #28a745; /* color verde bootstrap */
    }

    .btn-convert i {
        margin: 0; /* Para asegurarnos de que no haya m�rgenes adicionales en el �cono */
    }


/*PARTE VIDEO*/
.border-dashed {
    border-style: dashed !important;
}

.bi-play-circle {
    font-size: 3rem;
    color: #777;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block; /* Para asegurarnos de que se muestra inicialmente */
}

.unique-container-name .video-container video {
    max-width: 100%;
    max-height: 100%;
}

.no-border {
    border: none !important;
}

/* Estilos para el contenedor de video */
.video-container {
    position: relative;
}

.video-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #ecf0f1;
    background-color: rgba(44, 62, 80, 0.7); /* Un fondo oscuro semi-transparente para el nombre del archivo */
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.video-play-icon {
    font-size: 48px;
    color: #ecf0f1;
}

.video-container .video-thumbnail {
    width: 100%;
    height: 200px;
    background-color: #2c3e50; /* Color oscuro que evoca la idea de un video */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}



.video-container .btn-delete-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: white;
    border: none;
    border-radius: 50%;
    padding: 5px;
    font-size: 0.8em;
    color: #dc3545;
    width: 30px;
    height: 30px;
}

    .video-container .btn-delete-video:hover {
        color: white;
        background-color: #dc3545;
    }

/* Estilos para el modal (esto es b�sico, puedes adaptarlo seg�n tu dise�o) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}


.video-modal-content {
    width: 70%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
}

.video-modal-content {
    position: relative;
}




/*Alerta Propuesta Comercial*/
.notification-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
}

    .notification-box:hover {
        background-color: #e6e6e6;
    }

.notification-box-icon {
    margin-right: 10px;
}

.notification-box-text {
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
}

.notification-box-delete {
    cursor: pointer;
    color: #f44336;
}

/*Modo Oscuro*/
html[data-bs-theme="dark"] .notification-box {
    background-color: #2c2c2c;
    border-color: #444;
}

    html[data-bs-theme="dark"] .notification-box:hover {
        background-color: #1c1c1c;
    }

html[data-bs-theme="dark"] .notification-box-text {
    color: #e1e1e1;
}

html[data-bs-theme="dark"] .notification-box-delete {
    color: #f44336;
}

/***********FIN CREACIONES***********/



/*RESERVAS*/
#Steep1form {
    max-height: 3000px; /* un valor suficientemente grande para cubrir todo el contenido */
}

    #Steep1form.collapsed {
        max-height: 0; /* esto ocultar� el div */
    }


#Steep2form {
    max-height: 3000px; /* un valor suficientemente grande para cubrir todo el contenido */
}

    #Steep2form.collapsed {
        max-height: 0; /* esto ocultar� el div */
    }


#Steep3aform {
    max-height: 3000px; /* un valor suficientemente grande para cubrir todo el contenido */
}

    #Steep3aform.collapsed {
        max-height: 0; /* esto ocultar� el div */
    }


#Steep3bform {
    max-height: 3000px; /* un valor suficientemente grande para cubrir todo el contenido */
}

    #Steep3bform.collapsed {
        max-height: 0; /* esto ocultar� el div */
    }


#Steep4form {
    max-height: 3000px; /* un valor suficientemente grande para cubrir todo el contenido */
}

    #Steep4form.collapsed {
        max-height: 0; /* esto ocultar� el div */
    }


/* FACTURACION */

.loaderBox {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinnerBox {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*RESERVAS*/
.caja-estado {
    font-size: large;
    padding: 10px;
    text-align: center;
}

.status-pending-completion {
    background-color: orange !important;
}

.status-pending-contract {
    background-color: yellow !important;
}

.status-pending-confirmation {
    background-color: #0099FF !important;
    color: white !important;
}

.status-confirmed {
    background-color: green !important;
    color: white !important;
}

.status-chekedOut {
    background-color: #34495e !important;
    color: white !important;
}


.status-extended-booking {
    background-color: #9b59b6 !important;
    color: white !important;
}

.status-completed {
    background-color: #a4d3a2 !important;
    color: white !important;
}

.status-canceled {
    background-color: red !important;
    color: white !important;
}

.status-default {
    background-color: transparent !important;
}

.status-partner {
    background-color: lightgrey !important;
}



/*Estilos tablas muestra datos*/
.pagado, .no-pagado {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.pagado {
    background-color: green;
}

.no-pagado {
    background-color: red;
}

.custom-table-popover {
    --bs-popover-border-color: #b0b0b0;
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
    font-weight: 600;
}

.totalGlobexsComission {
    background-color: var(--bs-primary-bg-subtle);
}

#ReservaRequest_Observaciones {
    background-color: var(--bs-body-bg);
}

.proposal-footer {
    text-align: center;
    color: #90B6C1
}

.proposal-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: justify;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

    .proposal-badge:empty {
        display: none;
    }

.btn .proposal-badge {
    position: relative;
    top: -1px;
}


.select2-selection__clear {
    position: absolute !important;
    right: 2px !important;
}

/*Editor Quill*/

.ql-editor {
    background-color: var(--bs-body-bg);
}

.ql-snow .ql-editor h1 {
    font-size: 48px !important;
}

.ql-snow .ql-editor h2 {
    font-size: 36px !important;
}

.ql-snow .ql-editor h3 {
    font-size: 24px !important;
}

.ql-snow .ql-editor li {
    font-size: 18px !important;
    font-family: 'Montserrat';
}

.card-text h3 {
    font-size: 24px !important;
}

.card-text h4 {
    font-size: 20px !important;
}

/*Tabla Report Rental Agent Home*/

.report-home-table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.report-home-table th,
.report-home-table td {
    border: 1px solid #000;
}

.table > tbody {
    vertical-align: inherit;
}

.table > thead {
    vertical-align: bottom;
}

.report-home-title {
    background-color: var(--bs-primary-bg-subtle);
}

.report-home-subtitle {
    background-color: #fff;
}

.report-home-body {
    background-color: #fff;
}
