/* Flex & Grid - Center */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.place-items-center {
    display: grid;
    place-items: center;
}
.full-screen {
    height: 100%;
}

.pointer { cursor: pointer; }

.footer-grid-autofit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.flex-1 { flex: 1; }

.well {
    min-height: 20px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.form-group label { font-weight: 700; }

.hidden { display: none; }