        /* Estilos para el modal */
        .modalTriptico {
            display: none;
            position: fixed;
            /*padding-top: 60px;*/
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        .modalTriptico-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            min-width: 80%;
            max-height: 80%;
            overflow: hidden;
        }

        .pdfContainer {
            width: 100%;
            height: 100%;
            margin-top: 30px;
        }

        .mdlBttnCerrarTrip {
            position: absolute;
            text-align: right;
            width: 80%;
        }
        .mdlBttnCerrarTrip .miBoton {
            position: relative;
            right: 10px;
            top: 0;
            background-color: #ccc;
            padding: 5px 10px;
            border-radius: 5px;
            box-shadow: 2px 2px 2px 0px black;
            font-style: normal;
            cursor: pointer;
        }