/* style all input elements with a required attribute */
.required label:after {
    color: #d00;
    content: " *"
}

h1, h2, h3, h4, h5, h6 {
    color: #fbaf3f;
}
/**
 * style input elements that have a required
 * attribute and a focus state
 */
input:required:focus {
  border: 1px solid red;
  outline: none;
}

button:active {
    outline: none;
    border: none;
}

/**
 * style input elements that have a required
 * attribute and a hover state
 */
input:required:hover {
  opacity: 1;
}

.side-nav {
    border-right:2px solid gray;
}

.vertical-table, .related > table{
	width: 100%;
}

form#pay fieldset ul li{
	list-style-type: none;
}

.top-bar.expanded {
    background: #075945!important;
    border-bottom: 1px solid #075945;
}

.top-bar-section li:not(.has-form) a:not(.button) {
    background: #075945 !important;
    color: #fff;
}

.top-bar-section ul li:hover:not(.has-form) > a {
    color: #fff!important;
}

.side-nav li.heading {
    color: #fbaf3f!important;
}

fieldset#login, fieldset#losspassword, fieldset#chancepassword{
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)!important;
	background-color: #fff!important;
	margin: 5.125rem 0!important;
	border-radius:5px;
}

fieldset legend {
    background: transparent!important;
    font-size: larger;
}

input#username, input#password, input#email, input#confirm-password{

}

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
 
}

input[type="file"], input[type="checkbox"], input[type="radio"], select {

}

.top-bar-section ul li>a {
    font-weight: bold!important;
}

label {
    color: black!important;
    font-weight: 500;
}

button, .button {
	float: right!important;
}

button, .button {
    background-color:#075945!important;
    border-color: #075945!important;
    width: 100%;
    border-radius:5px;
}

.button-message {
  margin: 30px 0!important;
  font-weight: 500!important;
  font-size: 17px!important;
  padding: 12px 35px!important;
  border-radius: 25px!important;
  color: #FF675B!important;
  background-color: white!important;
  border: 2px solid!important;
}

.button-message:hover {
  color: rgb(255, 255, 255);
  background: rgb(238, 28, 49);
}

button:hover, button:focus, .button:hover, .button:focus {
    background-color: #075945f2!important;
}

.button-message:hover, .button-message:focus {
    background-color: #D33C44!important;
}

div.column > center > a.disable, div.column2 > center > a.disable {
    color: #ccc;
    line-height: inherit;
    text-decoration: none;
}

div.column > center > a, div.column2 > center > a  {
    color: #333333;
    line-height: inherit;
    text-decoration: none;
}

div.column > center > a.enable:hover, div.column2 > center > a.enable:hover  {
    color: #fbaf3f;
    line-height: inherit;
    text-decoration: none;
}

div.column > center > a.disable > i, div.column2 > center > a.disable > i  {
    font-size:48px;
    color:#ccc;
}

div.column > center > a.enable > i, div.column2 > center > a.enable > i  {
    font-size:48px;
    color:#333333;
}

div.column > center > a.enable:hover > i, div.column2 > center > a.enable:hover > i  {
    color:#fbaf3f;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

table tbody tr td, table tr td {
    line-height: 1.55rem!important;
}

.checkbox {
    width: 200px!important;
}

.tip {
  position: relative!important;
  display: inline-block!important;
  border-bottom: 1px dotted black!important;
}

.tip .tiptext {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -160px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tip .tiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tip:hover .tiptext {
  visibility: visible;
  opacity: 1;
}