.bg-body-tertiary , .bg-tertiary{
  background-color: #f6f6f6 !important;
}

.tighter{
  margin-top: -0.3rem;
}

/*  =========================== FORMS =========================== */
#momentumtools-form .col {
  flex: auto !important;
}

#momentumtools-form .checkbox , #momentumtools-form .radio {
  width: 100%;
}

#momentumtools-form .choices__list--dropdown[aria-expanded="false"] {
  display: none;
}
#momentumtools-form .choices__list--dropdown[aria-expanded="true"] {
  display: block;
}

#momentumtools-form .form-group {
  padding-top: 12px;
}

#momentumtools-form .form-control.input, #momentumtools-form .form-control {
  width: 100%;
}

#momentumtools-form .glyphicon-remove::before {
  font-family: 'bootstrap-icons';
  content: "\F5DE"; /* trashbin */
}

/*  =========================== TILES =========================== */
.card-hover {
  overflow: hidden;
  width: 100%;
}  

.card-hover:hover .zoom-on-hover {
  transform: scale(1.1);
}   

.zoom-on-hover {
  transition: transform 0.3s ease;
}

/*  =========================== TILES FILTER DROPDOWNS =========================== */

/* Choices JS dropdowns */
/* fix for safari 16.1 might be fixed in later versions */
/* https://github.com/Choices-js/Choices/issues/1056#issuecomment-1265329312 */
.choices .choices__list.choices__list--dropdown { 
  visibility: visible !important;
}
.choices .choices__list--dropdown,
.choices .choices__list[aria-expanded]{
  margin-top: 0px;
}
.choices.is-open .choices__list--dropdown, 
.choices.is-open .choices__list[aria-expanded]{
  margin-top: -1px;
}

/*  =========================== SIGN CONTRACT =========================== */

#signpad {
  border: 1px solid black;
} 

/*  =========================== NOTIFICATIONS =========================== */

/* buzzing animation to be still for 90% of the time and buzz in the other 10 */
@keyframes buzz {
  0% {
    transform: translateX(0);
  }
  91%, 93%, 95%, 97%, 99% {
    transform: translateX(-2px);
  }
  90%, 92%, 94%, 96%, 98%, 100% {
    transform: translateX(1px);
  }
}
.buzzing-badge {
  animation: buzz 4s ease-in-out infinite;
  animation-delay: 6s;  /* Only start after 6+4 seconds on the same page */
}

/* buttons apearing with delay */
.delayed-item {
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: appear 0.5s forwards var(--delay);
}
@keyframes appear {
  to {
    opacity: 1;
  }
}

/*  =========================== SCROLL =========================== */

/* Dont scroll behind the head menu */
:target::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
}


/*  =========================== PWA =========================== */

/* PWA apple install */
/* .ios-prompt {
  display: none;
} */

/*  =========================== BLOG =========================== */

/* square video images (also using javascript) */
.image-cropper {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.image-cropper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.emoji_vote {
	font-size: 1.2em;
	margin-right: 5px;
	cursor: pointer;
 }
