﻿.information-grid-container {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: var(--sds-white);
    /* Shadow/grid */
    box-shadow: 0px 0px 1px 0px rgba(2, 3, 3, 0.25), 0px 2px 1px 0px rgba(2, 3, 3, 0.05);
    margin: auto;
}

.information-grid-container-md {
    /*display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    color: #020303;*/

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
/*    background: var(--sds-grey-400);*/
}
.information-grid-container-md .line-break {
    width: 100%;
    height: 1px;
    margin-top: 24px;
    margin-bottom: 24px;
    background: var(--sds-grey-400);
}

.info-item {
    height: 50px;
}


.info-grid-label {
    align-self: stretch;
    color: var(--grey-900, #020303);
    /* B4/Regular */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.info-grid-text {
    flex: 1 0 0;
    color: var(--grey-900, #020303);
    /* B4/Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}