/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
  max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
  .body-content {
    padding: 0;
  }
}

.fhs-header {
  background-color: #00465a !important
}

.fhs-header-dropdown-button {
  color: white !important;
  text-decoration: none;
}

.dropdown-menu-dark {
  background-color: #00465a !important;
  border: 1px solid #296c7f;
}

.fhs-card-header{
  background-color: #EAEAEA !important;
}

/* Overrides for some of the button classes */

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  background-color: #296c7f !important;
  border-color: #296c7f !important;
  color: white !important;
}

.btn-outline-primary {
  border-color: #296c7f !important;
  color: #296c7f !important;
}

.btn-outline-primary:hover, .btn-outline-primary:active {
  background-color: #296c7f !important;
  color: white !important;
}

.btn-warning, .btn-warning:hover, .btn-warning:active, .btn-warning:visited {
  background-color: #FABB3C /*#e7b416*/ !important;
  border-color: #FABB3C /*#e7b416*/ !important;
  color: white !important;
}
.btn-success, .btn-success:hover, .btn-success:active, .btn-success:visited {
  background-color: #008e73/*#008450*/ !important;
  border-color: #008e73 /*#008450*/ !important;
  color: white !important;
}


#spinner {
  /*visibility: hidden;*/
  background-color: #fff;
  color: #000;
  text-align: center;
  /*border: 1px solid;*/
  padding: 16px;
  position: fixed;
  /*z-index: 1;*/
  bottom: 50%;
  left: 50%;
  /*transform: translateX(-50%);*/
  font-size: x-large;
}

#mainspinner {
  /*visibility: hidden;
  background-color: #fff;
  color: #000;
  text-align: center;
  border: 1px solid;
  padding: 16px;*/
  /*position: fixed;
  z-index: 1;*/
  /*left: 10%;*/
  /*bottom: 523px;
  left: 50%;
  transform: translateX(-50%);*/
  position: fixed;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 7000;
}

/* Transparent Overlay */
#mainspinner:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*z-index: 6999;*/
  background-color: rgba(255,255,255,0.87);
}

body.modal-open #mainspinner:before {
  background-color: transparent;
}

#mainspinner.show {
  visibility: visible;
}

body .modal {
  z-index: 1050;
}

body.loading .modal {
  z-index: 1000;
}

body.loading #spinner {
  z-index: 7000;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #00465a;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

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