/*
.error{
    background-color:#e2001a;
}
*/
.formErrorPrompt{
    position:relative;
    float:left;
    clear:both;
    /*width:100%;*/
    z-index:8;
    margin:.5em 0 0;
    background-color:#e2001a;
    color:#fff;
    word-wrap:break-word;
    padding:.5em;
    -webkit-box-shadow:3px 3px 3px rgba(0,0,0,.5);
    -moz-box-shadow:3px 3px 3px rgba(0,0,0,.5);
    box-shadow:3px 3px 3px rgba(0,0,0,.5);
    font-style:italic;

    /* Per website fix; depends on parent */
    position:absolute;
    /*max-width:300px;*/
    opacity: 90%;
    font-size: 16px;
    line-height: 16px;
    padding: .5em 1em;
    background-color:#660000;
}
.formErrorPrompt:after,.formErrorPrompt:before{
    bottom:100%;
    left:1em;
    border:solid transparent;
    content:" ";
    height:0;
    width:0;
    position:absolute;
    pointer-events:none
}
.formErrorPrompt:after{
    border-bottom-color:#e2001a;
    border-bottom-color:#660000;
    border-width:.5em;
    margin-left:-.5em
}

/**
 * .reftip works well on hower
 */
.textref {
	cursor:pointer;
}
.reftip {
	margin:9px 0 0 0;
	z-index:1000;
	display: none;
	min-width:20%;
	max-width:70%;
	/*position: fixed;*/
	position:absolute;
	background-color: #1E1E1E;
	background-color:var(--dark);
	color:#CCC;
	color:var(--bg-color);
	/*border-radius: 5px;*/
	word-wrap: break-word;
	padding: 1em;
	/*
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	*/
}
.reftip:after, .reftip:before {
	bottom: 100%;
	left: 12px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.reftip:after {
	border-bottom-color: #1E1E1E;
	border-bottom-color:var(--dark);
	border-width: 9px;
	margin-left: -9px;
}