@media (max-width: 990px) { /* Only applied when the screen is smaller than 990px */
    ul.mobilelist {
        font-size: 150%;
    }
}
/* Mobile list styling */
ul.mobilelist {
    padding-left: 0px;
    margin-left: 0px;
    border-bottom:1px solid black;
}
ul.mobilelist li {
    list-style: none;
    border-top: 1px solid black;
    padding: .25em;
}
ul.mobilelist a {
    text-decoration: none;
}
.Icon {
    height:24px;
    width:24px;
}
.GiftIcon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
    /* margin-top: .2em; */
}
.Clickable {
    cursor: pointer;
}

/* Group in header */
h1 #GroupName {
    float: right;
    font-size: 50%;
    margin-top:.25em;
}
h1 #GroupName .Icon {
    width: 2em;
    height: 2em;
}
#SafeMode {
    margin-right: 2em;
    cursor:pointer;
}
#SafeMode.On {
    background-color: #FFD800;
    padding: .2em;
}

#SafeMode .Icon {
    margin-right: .3em;
}

/* Edit Form */
.StandardPopUp {
	position: absolute;
	background: #BBB;
	border: 3px solid black;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 10px 30px 20px 10px;
	border: 1px solid black;
	display: none;
	margin: -18px 0px 0px 25px;
	color: black;
	z-index:1000;
	width:80%;
    top:2em;
}

label {
    font-weight: bold;
}

/* Message Boxes */
.MessageBox {
    margin:10px auto;
    padding:10px;
    text-align:center;
    display:none;
}
#ErrorMessage {
    background-color:pink;
    border:2px solid red;
}
#InformationMessage {
    background-color:lightblue;
    border:2px solid blue;
}
.InstallInstructionImage {
    max-width: 100%;
    height: auto;
}
#InstallInstructionBlock {
    /* font-size: 80%; */
    overflow-y: scroll;
}