/* ################################################################## */
/* Estilos de componentes propios de Dtiware para todos los proyectos 
Autor: Gabriel Reyes
Fecha: 24/09/2024
Version: 1.0.1 */
/* ################################################################## */

.dti_note {
    background: none repeat scroll 0 0 #536d88; /* color de fondo */
    color: #FFFFFF; /* color de texto */
    margin: 2em auto;
    overflow: hidden;
    padding: 1em 1.5em;
    position: relative;
    width: 680px; /* ancho */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.dti_note:before {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.2);
    background: none repeat scroll 0 0 #0f132e; /* color esquina */
    border-color: #F7F7F8 #F7F7F8 #0f132e #0f132e; /* color de borde */
    border-style: solid;
    border-width: 0 50px 50px 0;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}

/*.dti_note:after {
    content: 'APLICADO';
    position: absolute;
    top: 20px;
    left: -40px;
    background-color: #FF0000; 
    color: #FFFFFF; 
    padding: 5px 40px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    rotate: -45deg;
    letter-spacing: 2px;
}*/

.dti_note h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 0.5em;
    text-align: center;
    padding-bottom: 20px;
}

.dti_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dti_list li {
    margin-bottom: 10px;
}

.dti_btn_menu {
    flex-direction: column !important;
    align-items: center;
    display: flex !important;
    font-size: 10px;
    padding: 8px;
    margin-right: 2px;
    border: 1px solid var(--color-dti-primary);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.dti_btn_edit_view {	
    padding: 0px 4px 0px 4px;
    margin-left: 5px;
    vertical-align: bottom;
}

/* ################################################################## */
/* TABS para pantallas */
/* ################################################################## */

.dtiTab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.dtiTab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 8px;
    transition: background-color 0.3s;
    font-size: 17px;
    border: 1px solid var(--color-dti-primary);
    border-radius: 5px;
    margin-left: 1px;
}

.dtiTab button:hover {
    background-color: var(--color-dti-fourty);
}

.dtiTab button.active {
    background-color: var(--color-dti-primary);
    color: white;
}

.dtiTab button.close {
    color: red;
    font-weight: bold;
}

.dtiTabcontent {
    display: none;
    padding: 16px;
    border-top: none;
    width: 100%;
}

.dtiTabcontent.active {
    display: block;
}

.closeTab {
    cursor: pointer;
    color: red;
    font-size: 12px;
    margin-left: 10px;
}

iframe {
    width: 100%;
    height: 400px; /* Altura fija para el ejemplo, puedes ajustarlo */
    border: none;
}

/* ################################################################## */
/* Container Card para Facturacion Electronica */
/* ################################################################## */

.dti_card {
    width: 200px; /* Ancho del contenedor */
    border: 3px solid black;
    font-family: Arial, sans-serif;
    text-align: center;
}

.dti_card_header {
    background-color: #00AEEF;
    color: white;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;
}

.dti_card_body {
    background-color: white;
    color: black;
    padding: 20px 0;
    font-weight: bold;
    font-size: 20px;
}