.c-pointer {
  cursor: pointer;
}

.field-with-error {
  outline: 1px solid red;
}

.hr-label {
  position: relative;
  /* margin-top: 20px;
  margin-bottom: 5px; */
  text-align: center;
  clear: both;
  overflow: hidden;
}

.hr-label::before, .hr-label::after {
  content: '';
  position: relative;
  width: 50%;
  background-color: #000;
  display: inline-block;
  height: 1px;
  vertical-align: middle;
}

.hr-label::before {
  right: 0.5em;
  margin-left: -50%;
}

.hr-label::after {
  left: 0.5em;
  margin-right: -50%;
}

/* ------------------------------------------------- */
/* medium only card with shadow, doesn't look like a card on mobile */

.md-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FBFBFB;
  background-clip: border-box;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .md-card {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    background-color: #fff;
  }
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ------------------------------------------------- */
/* animated loading */

.fade-in {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.frame-0 {
  animation-delay: 0s;
}
.frame-1 {
  animation-delay: 0.25s;
}
.frame-2 {
  animation-delay: 0.50s;
}
.frame-3 {
  animation-delay: 0.75s;
}
.frame-4 {
  animation-delay: 1s;
}
.frame-5 {
  animation-delay: 1.25s;
}
.frame-6 {
  animation-delay: 1.45s;
}
.frame-7 {
  animation-delay: 1.65s;
}
.frame-8 {
  animation-delay: 1.8s;
}
.frame-9 {
  animation-delay: 1.95s;
}
.frame-10 {
  animation-delay: 2.10s;
}
