/* this colors the asterisk red, for fields that are required. */
.required-field {
    color: red !important;
    font-size: 150% !important;
    line-height: 0.0em !important;
}


/* warning message block */
.warningMessage {
    color: orange;
}


/* used to define un-implemented links. */
.unImplementedLink {
    text-decoration: line-through !important;
}


/* used to define a clickable element. */
.clickable {
    cursor: pointer !important;
}


/* used to define a pointable element. */
.pointable {
    cursor: default !important;
}


/* used to standardize the images displayed in picture list. */
.imageList{
    height: 150px;
    transition: transform .2s;
}


/* used to zoom pictures when hovering. */
.zoomable:hover {
    cursor: zoom-in;
    -ms-transform: scale(2);     /* IE 9 */
    -webkit-transform: scale(2); /* Safari 3-8 */
    transform: scale(2);
}


/* placeholder */
.actionButton {
}


.fullWidth {
    width: 100%;
}


.accordion-text {
    font-size: 0.75em;
    margin-left: 8em;
}