.mr-motorcycle-like,
.mr-motorcycle-like form {
  display: inline-flex;
  margin: 0;
}

.mr-motorcycle-like__button {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  color: #344054;
  background: #fff;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mr-motorcycle-like__button:hover {
  border-color: #f04438;
  color: #c4320a;
  background: #fff6f3;
  transform: translateY(-1px);
}

.mr-motorcycle-like__button i {
  color: #f04438;
  font-size: 0.9rem;
}

.mr-motorcycle-like__button strong {
  display: inline-grid;
  min-width: 1.25rem;
  min-height: 1.25rem;
  place-items: center;
  padding: 0 0.28rem;
  border-radius: 999px;
  color: #475467;
  background: #f2f4f7;
  font-size: 0.66rem;
}

.mr-motorcycle-like__button.is-liked {
  border-color: #fecdc9;
  color: #b42318;
  background: #fff1f0;
}

.mr-motorcycle-like__button.is-liked strong {
  color: #fff;
  background: #d92d20;
}

.mr-motorcycle-like__button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.mr-motorcycle-like__button.is-loading {
  cursor: wait;
  opacity: 0.68;
}

.mr-motorcycle-like__button.is-loading i {
  animation: mr-motorcycle-like-pulse 650ms ease-in-out infinite alternate;
}

.mr-motorcycle-like__button strong.is-updated {
  animation: mr-motorcycle-like-count 320ms ease;
}

.mr-motorcycle-like-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1090;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.78rem 1rem;
  border: 1px solid #abefc6;
  border-radius: 0.85rem;
  color: #05603a;
  background: #ecfdf3;
  box-shadow: 0 1rem 2.5rem rgba(16, 24, 40, 0.2);
  font-size: 0.82rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.65rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mr-motorcycle-like-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mr-motorcycle-like-toast.is-error {
  border-color: #fecdca;
  color: #b42318;
  background: #fef3f2;
}

@keyframes mr-motorcycle-like-pulse {
  to {
    transform: scale(1.18);
  }
}

@keyframes mr-motorcycle-like-count {
  50% {
    transform: scale(1.18);
  }
}

@media (max-width: 575.98px) {
  .mr-motorcycle-like__button {
    min-height: 2.35rem;
  }

  .mr-motorcycle-like-toast {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    max-width: none;
    text-align: center;
  }
}
