body {
    text-align: center;
}

.DocumentContainer {
    max-width: 1024px;
    width: calc(100% - 4em);
    display: inline-block;
    margin: 1em;
    padding: 1em;
    text-align: left;
}
.DocumentContainer * {
    all: revert;
}

.accordion {
    cursor: pointer;
    padding: 1em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    background-color: rgba(255, 255, 255, 0.95);
}

.active,
.accordion:hover {
    /* background-color: #ccc; */
}

.panel {
    padding: 0 2em;
    margin: 0.5em 0;
    /* background-color: white; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

button.accordion::after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.certlogo {
    height: 192px;
    width: 256px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.ConsultaButton {
    font-size: 1.5rem;
    font-weight: bold;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #38B048;
    border-radius: 8px;
    padding: 0.5em 1em;
    background-color: #077AE4;
    color: whitesmoke;
    display: inline-block;
    cursor: pointer;
    transition-duration: 250ms;
}

.ConsultaButton:hover {
    background-color: #38B048;
    transform: scale(1.1);
}
