.app-container {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media(max-width: 768px) {
    .app-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.app-container h6 {
    font-size: .8em;
    color: var(--darkgray);
    font-weight: 400;
}

.app-container h5 {
    color: var(--darkgray);
    font-weight: 400;
}


/* info */
.info-table {
    border-top: 2px solid rgb(79, 123, 183);
    display: flex;
    flex-direction: column;
}

.info-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #cccccc;
}
@media(min-width: 768px) {
    .info-row {
        flex-direction: row;
    }
}

.info-table .label {
    color: rgba(0,0,0,0.54);
    background-color: #f8f9fa;
    padding: 8px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media(min-width: 768px) {
    .info-table .label {
        width: 200px;
        justify-content: flex-end;
    }
}

.info-table .label-text {
    font-size: .9em;
    font-weight: bold;
    color: black;
}

.info-table .content {
    font-size: .9em;
    padding: 8px 16px;
    flex: 1;
    color: rgb(33, 37, 41);
    white-space: pre-line;
}

.info-table .input-row {
    display: flex;
    margin-bottom: 4px;
}

.info-table .input-content {
    margin: 0 8px;
    flex: 1;
}
/* end: info */