/* Navigation Container */
.progress {
    background-color: transparent;
}

.progress > .list-group.top {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
}

/* Individual tab items */
.progress > .list-group-item {
    padding: 10px 20px;
    cursor: default;
    font-size: 16px;
    font-weight: normal;
    color:#333;
    position: relative;
    transition: color 0.3s ease-in-out;
    background-color: transparent;
    border: none;
    text-align: center;
    word-break: keep-all;
    display: flex;
    align-items: center;
}

/* Active tab */
.progress > .list-group-item.active{
    font-weight: bold;
    border: none;
}

/* Active tab underline with pseudo element */
.progress > .list-group-item.active::after{
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: #4a6b84;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

/* Put a default height on form textareas so they're not initially the same height as normal text inputs */
textarea.form-control:not([readonly]) {
	height: 120px;
	/* And make sure it can only resize vertically */
	resize: vertical;
}

/* Put a style on file inputs which the attachments-max class, for some visual indicator of being disabledf */
input[type="file"].attachments-max {
	opacity: 0.5;
}

.input-group {
    align-items: stretch; 
}

/* Line up the page contents, no indent padding */
/* .clearfix.cell.text.form-control-cell{
    padding: 0px 0px 10px;
}

.clearfix.cell.subgrid-cell{
    padding: 0px 0px 10px;
}

.clearfix.cell.lookup.form-control-cell{
    padding: 0px 0px 10px;
}

.clearfix.cell.textarea.form-control-cell{
    padding: 0px 0px 10px;
}

.clearfix.cell.picklist-cell{
    padding: 0px 0px 10px;
} */

.clearfix.cell{
    padding: 0px 0px 10px;
}

.cell{
    padding: 0px 0px 10px;
}