#user-resend-actlink.htmx-request, #reset-submit.htmx-request, #login-submit.htmx-request, #signup-submit.htmx-request, #forgot-submit.htmx-request, #user-update-pw.htmx-request {
  pointer-events: none;
  border: gray;
  background: gray;
}

span#delete-pill, span#pill, span#add-pill {
  margin: 4px;
  padding: 10px;
  height: 30px;
  align-items: center;
  display: flex;
}

button#delete-pill, button#add-pill {
  background-color: transparent;
  border-color: transparent;
}

div#pillbox, div#pred-pills, div#pillbox-current {
  flex-direction: row;
  flex-wrap: wrap;
  display: flex;
}

.cc-group {
  background: white;
  border-radius: 4px;
  margin-bottom: 20px;
}

.cc-label {
  position: relative;
  color: #3b3b3b;
  font-weight: 300;
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
}

.cc-group .cc-label:not(:last-child) {
  border-bottom: 1px solid #F0F5FA;
}

.cc-label > .cc-span {
  width: 100px;
  min-width: 100px;
  text-align: right;
}

.cc-field {
  background: transparent;
  font-weight: 300;
  border: 0;
  color: #31325F;
  outline: none;
  flex: 1;
  padding-right: 10px;
  padding-left: 10px;
  cursor: text;
  min-width: 200px;
}

.cc-field::-webkit-input-placeholder {
  color: #CFD7E0;
}

.cc-field::-moz-placeholder {
  color: #CFD7E0;
}

#klass-badge, #delete-badge {
  position: absolute;
  top: 0%;
  right: 0%;
}

#blog-cover {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  min-height: 150px;
  margin: 0px;
  padding: 0px;
}

#blog-cover-thumbnail {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  min-height: 100px;
  margin: 0px;
  padding: 0px;
}

#blog-col-thumbnail {
  border: 2px solid #7977773b;
  border-radius: 10px;
  margin-right: 12px;
  margin-left: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

[x-cloak] {
  display: none !important;
}

.bootstrap_chat {
  background-color: #f1f4f600;
}

.text-small {
  font-size: 0.9rem;
}

.messages-box, .chat-box {
  min-height: 150px;
  max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.blur-text {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

.blur-img {
  filter: blur(20px);
  -webkit-filter: blur(20px);
}

@keyframes dissolve {
  0% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
    filter: blur(0);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) translate(-50%, -50%);
    filter: blur(3px);
  }
  100% {
    opacity: 0;
    transform: scale(0.6) translate(-50%, -50%);
    filter: blur(8px);
  }
}

.dissolve-out {
  animation: dissolve 3s forwards;
}

.ticker-container {
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.ticker-track {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  animation-name: scrollAnimation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--animation-duration, 20s);
  margin-left: auto;
  margin-right: auto;
}

@keyframes scrollAnimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--total-width)));
  }
}

.ticker-item {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.ticker-item img {
  max-height: 100%;
  width: auto;
  display: block;
}

.ticker-pill {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 5px;
  border-radius: 10px;
  font-size: 10px;
  pointer-events: none;
}

