.no-navigation {
  margin-left: 0px;
}

.strong {
  font-weight: bold;
}

.error {
  color: red;
}

.form-error {
  border-color: red;
}

div.sign-in-form {
  width: 300px;
  margin: 30px auto;
}

.required-mark::after {
  content: '*';
  padding-left: 5px;
  color: red;
}

.maintenance-label {
  position: relative;
  display: block;
  padding: 4px 10px;
  margin: 10px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  border: solid 2px #ffffff;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.1);
  cursor: not-allowed;
  animation: maintenance-label-flashing 0.8s ease-out infinite alternate;
}

.note {
  display: inline-block;
  color: #999999;
  font-size: 11px;
}

.caution i {
  color: #f3ca4e;
}

.gray {
  color: gray;
}

@keyframes maintenance-label-flashing {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.box-section-title {
  display: inline-block;
  margin: 0 0 10px 5px;
  padding: 0 30px 5px 10px;
  line-height: 1;
  font-size: 15px;
  color: #999;
  border-left: 5px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.display-none {
  display: none;
}

.invisible {
  visibility: none;
}

.inline-block {
  display: inline-block;
}

.margin-right-4 {
  margin-right: 4px;
}

.margin-right-6 {
  margin-right: 6px;
}

.margin-left-4 {
  margin-left: 4px;
}

.margin-left-6 {
  margin-left: 6px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-top-4 {
  margin-top: 4px;
}

.margin-top-6 {
  margin-top: 6px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-bottom-4 {
  margin-bottom: 4px;
}

.margin-bottom-6 {
  margin-bottom: 6px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.width-100 {
  width: 100px;
}

.width-150 {
  width: 150px;
}

.width-200 {
  width: 200px;
}

.width-300 {
  width: 300px;
}

.center {
  text-align: center;
}

.scrollable {
  overflow-y: scroll;
}

.text-color-primary {
  color: #000000
}

.text-color-secondary {
  color: #808080
}

.valign-middle {
  vertical-align: middle;
}

.cursor-pointer {
  cursor: pointer;
}

.lamp::before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  vertical-align: middle;
  background-color: lightgray;
  border-radius: 5px;
  border: 1px solid gray;
  margin-right: 4px;
  margin-bottom: 3px;
}

.lamp.lamp-on::before {
  background-color: #76D572;
  border-color: #ddffdd;
}

input[type="number"].spin-button-hide::-webkit-outer-spin-button,
input[type="number"].spin-button-hide::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].spin-button-hide {
  -moz-appearance:textfield;
}

/* Animations */

@keyframes flash {
  from { background-color: #ffffcc; }
  to { background-color: rgba(255,255,255,0); }
}

.flash {
  background-color: rgba(255,255,255,0);
  animation-name: flash;
  animation-duration: 0.4s;
  animation-timing-function: ease-in;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spin {
  animation: spin 1.5s linear infinite;
}

/* Bootstrap workaround */

.input-group>.input-group-btn:first-child>.btn {
  margin-right: -2px;
}
