/* Hide profile image */
div.container>div>div.col-md-4>div.well {
    display: none !important;
}

/* Add bottom and left padding to all cells */
.crmEntityFormView .cell {
    padding: 0 0 20px 20px;
}

/* remove the bottom left padding on checkbox cells */
.crmEntityFormView .checkbox-cell {
    padding: 0 0 0px 20px;
}

/* First cell doesn't need left padding (no other elelment to the left)*/
.crmEntityFormView .cell:first-child {
    padding-left: 0;
}

/* Margin and alignment for horizontal radio button lists (picklists) */
html[dir=ltr] .crmEntityFormView .cell .picklist input[type="radio"] {
    margin: 2px 5px 5px 0;
    vertical-align: top;
}

/* Add spacing between this horizontal radio button and the one to the left*/
html[dir=ltr] .crmEntityFormView .cell .picklist.horizontal input[type="radio"] {
    margin-left: 10px;
}

/* No horizontal spacing needed to the left of the first radio button in the radio button list */
html[dir=ltr] .crmEntityFormView .cell .picklist input[type="radio"]:first-child {
    margin-left: 0;
}

/* First date input should allow for 4 numbers */
table[data-name^="section_dates"] td.cell.form-control-cell:first-child {
    width: 4em;
}

/* Copied over from bundle.css. Used to increase gap between page copy and following elements */
.page-copy {
    margin-bottom: 40px;
}

/* Styling Cells inside the Associate and Lookup Modals */
.entity-associate .view-grid td, .entity-lookup .view-grid td {
    font-size:  13.125px; 
    font-family: "Segoe UI Light","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;  
    line-height: 1.1;
}

/* Styling for Lookup Field Labels and Modal's Table Copy (e.g. "Chooose one record...") */
.entity-associate .view-grid > span, .entity-lookup .view-grid > span, td.form-control-cell.lookup label.field-label {
 
    font-family: "Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 15px;
    line-height: 1.42857;
    color: #666666;
 
} 