.financialTab {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.financialTab__agent {
    width: 47%;
    display: inline-block;
}

#documentcdaserialized {
    visibility: hidden;
}

.financialTab th {
    display: none;
}

td[colspan="50"] {
    display: none;
}

td:nth-child(2) {
    font-weight: bold;
}

.info-wrapper {
    background: lightgreen;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.info-wrapper i {
    padding-right: 10px;
}

.financialTab .form {
    width: 100%;
    padding: 9px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    justify-content: center;*/
    /*    flex-wrap: wrap;*/
}

.info-text {
    color: black;
    font-weight: bold;
}

.custom-additional-select {
    font-weight: bold;
    width: 100%;
    padding: 0 4px 0 4px;
    border-radius: 6px;
}

@media screen and (max-width: 991px) {
    .financialTab__agent {
        width: calc(100% - 3rem);
        margin: 0 1.5rem;
    }
}