html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Status message styles - START  */

#StatusMessages {
    display: flex;
    border: 1px solid darkgray;
    padding: 3px;
    background-color: #fffcf0;
    color: black;
    text-align: left;
    /*margin-top: 5px;*/
    /*margin-left: -10px;*/
    /*margin-top: 5px;
    margin-bottom: 5px;*/
    border-radius: 5px;
    width: 100%;
    z-index: 10;
}

.StatusMessage {
    min-height: 20px;
    font-size: 16px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.SuccessMessage:before {
    content: "\f058";
    font-family: 'Font Awesome\ 5 Free';
    font-size: 18px;
    color: darkgreen;
}

.InfoMessage:before {
    content: "\f05a";
    font-family: 'Font Awesome\ 5 Free';
    font-size: 18px;
    color: cornflowerblue;
}

