﻿

.fill {
    flex: 1;
    width: auto;
}

.row-between {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    //width: 100%;
}

.row-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.row-left {
    display: flex;
    gap: 16px;
    justify-content: left;
}

.row-evenly {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.grid {
    display: grid;
    align-items: center;

    column-gap: 32px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 850px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row-end {
    display: flex;
    align-items: end;
    gap: 8px;
    justify-content: space-between;
}

dl {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

dt {
    margin: 0;
    color: #9098B1;
    font-weight: 500;
    font-size: 0.9rem;
}

dd {
    margin: 0;
    color: #223263;
    font-weight: 600;
    font-size: 0.9rem;
}
