.loading-indicator {
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

.dot-wave {
  --uib-size: 47px;
  --uib-speed: 1s;
  --uib-color: #0000008c;

  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: var(--uib-size);
  height: calc(var(--uib-size) * 0.17);
  padding-top: calc(var(--uib-size) * 0.34);
}

.dot-wave__dot {
  flex-shrink: 0;
  width: calc(var(--uib-size) * 0.17);
  height: calc(var(--uib-size) * 0.17);
  border-radius: 50%;
  background-color: var(--uib-color);
  will-change: transform;
}

.dot-wave__dot:nth-child(1) {
  animation: jump var(--uib-speed) ease-in-out
    calc(var(--uib-speed) * -0.45) infinite;
}

.dot-wave__dot:nth-child(2) {
  animation: jump var(--uib-speed) ease-in-out
    calc(var(--uib-speed) * -0.3) infinite;
}

.dot-wave__dot:nth-child(3) {
  animation: jump var(--uib-speed) ease-in-out
    calc(var(--uib-speed) * -0.15) infinite;
}

.dot-wave__dot:nth-child(4) {
  animation: jump var(--uib-speed) ease-in-out infinite;
}

@keyframes jump {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-200%);
  }
}

@media print {
  #astro-app {
    padding: 0 !important;
  }
  .no-print {
    display: none !important;
  }
}

.feedback {
  margin-top: 10;
}

/* Contract search */

.contract-search-input {
  height: 43px !important;
}

.contract-label {
  margin-left: 5px;
}

.contract-search-match {
  background-color: #fffacd;
  padding-top: 4px;
  padding-bottom: 4px;
}

.clickable {
  cursor: pointer;
}

.btn {
  margin-right: 6px !important;
  margin-bottom: 6px !important;
}

.personal-detail > i.fa-icon {
  width: 20px;
  text-align: right;
}

.company-detail > i.fa-icon {
  width: 20px;
  text-align: right;
}

.company-details > table > tbody > tr > td.action-column,
.contract-details > table > tbody > tr > td.action-column {
  text-align: right;
}

.danger-action {
  color: var(---astro-color-danger);
}

.good-action {
  color: var(---astro-color-success);
}

.warning-action {
  color: var(---astro-color-warning);
}

.bold {
  font-weight: bold;
}

/* The Modal (background) */
.notes-modal,
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.notes-modal.notes-modal-visible,
.modal-visible {
  display: block;
}

/* Modal Content/Box */
.notes-modal-content,
.modal-content {
  /* background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 0.5;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form-control.notes-text-area {
  min-height: 200px;
  margin-bottom: 20px;
}

i.fa.fa-sticky-note.right-of-button {
  margin-right: 2px;
}

button.contract-summary-action-button.btn.btn-default {
  min-width: 105px;
}

a.contract-summary-action-button.btn.btn-default {
  min-width: 105px;
}

.btn.btn-small.btn-danger.account-view-action-button {
  width: 100%;
}

.floating-notes-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--astro-color-primary);
  color: var(--astro-color-background);
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
}

.floating-notes-button-icon {
  margin-top: 16px;
}

.beneficiary-benefit-column {
  text-align: center;
}

.edit-button {
  cursor: pointer;
}

.edit-button.disabled {
  cursor: not-allowed;
}

.form-control.input-validation-error {
  background-color: var(---astro-color-danger);
}

.company-field {
  width: 25%;
}

.explicitly-pause-collection .left-datepicker {
  margin-right: 2.5%;
  display: inline-block;
  width: 45%;
}

.explicitly-pause-collection .right-datepicker {
  margin-left: 2.5%;
  display: inline-block;
  width: 45%;
}

.explicitly-pause-collection .selection > div,
.explicitly-pause-collection .selection > div > div {
  display: inline-block;
  margin-right: 10px;
}

.flatpickr-input[readonly] {
  background-color: var(--astro-color-neutral);
}

@media (max-width: 960px) {
  .styled-page-button {
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (min-width: 959px) {
  .styled-page-button {
    margin-left: 9px !important;
  }
}

.styled-page-button {
  min-width: 250px !important;
  margin-bottom: -0.5rem !important;
}

.input-container {
  max-width: 100% !important;
}

.rapid-ui-form {
  width: 450px !important;
  max-width: 450px;
}
