.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}

.new-feature-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: .75rem;
}

.icon-link>.bi {
  margin-top: .125rem;
  margin-left: .125rem;
  fill: currentcolor;
  transition: transform .25s ease-in-out;
}

.icon-link:hover>.bi {
  transform: translate(.25rem);
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
}

.text-shadow-1 {
  text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

.text-shadow-2 {
  text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

.text-shadow-3 {
  text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
}

.instruction p {
  font-style: italic;
}

.home-username {
  color: white;
}

@media (max-width:575px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width:576px) {
  .mobile-only {
    display: none;
  }
}

.form-control:disabled {
  background-color: #fbfbfb;
}


/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loading span {
  display: inline-block;
  vertical-align: middle;
  width: .6em;
  height: .6em;
  margin: .19em;
  background: #ffffff;
  border-radius: .6em;
  animation: loading 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading span:nth-of-type(1) {
  background: #DB4437;
  animation-delay: 0.2s;
  opacity: 0;
}

.loading span:nth-of-type(2) {
  background: #F4B400;
  animation-delay: 0.4s;
  opacity: 0;
}

.loading span:nth-of-type(3) {
  background: #0F9D58;
  animation-delay: 0.6s;
  opacity: 0;
}

.loading span:nth-of-type(4) {
  background: #4285F4;
  animation-delay: 0.8s;
  opacity: 0;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.8;
  }
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.olivia-title {
  color: rgb(28, 74, 54);
}

.opacty-hidden {
  opacity: 0.1;
  transition: opacity 1s;
}

.opacity-zero {
  opacity: 0;
}

.fade-in {
  opacity: 1;
  transition: opacity 2s;
}

.fade-out {
  opacity: 0;
  transition: opacity 2s;
}

.title-flex {
  display: flex;
  justify-content: space-between;
}

.debug-button {
  position: absolute;
  bottom: 24px;
  right: 0;
}

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

.bold {
  font-weight: 800;
}