.catlo-chat-entry {
  box-sizing: border-box;
  margin: 14px 0 0;
  width: 100%;
}

.catlo-chat-entry *,
.catlo-chat-entry *::before,
.catlo-chat-entry *::after {
  box-sizing: border-box;
}

.catlo-chat-entry__button {
  align-items: center;
  background: #176b5b;
  border: 1px solid #176b5b;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;

  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1.2;
  min-height: 46px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color .15s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    transform .15s ease;
  width: 100%;
}

.catlo-chat-entry__button:hover {
  background: #125849;
  border-color: #125849;
  box-shadow: 0 6px 16px rgb(23 107 91 / 16%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.catlo-chat-entry__button:focus-visible {
  outline: 3px solid rgb(23 107 91 / 24%);
  outline-offset: 2px;
}

.catlo-chat-entry__notice {
  background: #f8fafc;
  border: 1px solid #d8e1ea;
  border-radius: 10px;
  color: #526176;
  font-size: 14px;
  line-height: 1.45;
  margin: 14px 0 0;
  padding: 10px 12px;
}

.user-public-profile .catlo-chat-entry {
  flex: 0 1 auto;
  margin: 0;
  width: auto;
}

.user-public-profile .catlo-chat-entry__button {
  min-height: 42px;
  width: auto;
}

@media (max-width: 640px) {
  .user-public-profile .catlo-chat-entry,
  .user-public-profile .catlo-chat-entry__button {
    width: 100%;
  }

  body.item .catlo-chat-entry__button {
    min-height: 48px;
  }
}

body.item .catlo-item-action-bar .catlo-chat-entry {
  flex: 0 0 auto;
  margin: 0;
  min-width: 0;
  width: auto;
}

body.item .catlo-item-action-bar .catlo-chat-entry__button {
  width: auto;
}

body.item .catlo-item-action-bar .catlo-chat-entry__notice {
  flex: 1 1 220px;
  margin: 0;
}

body.item .item-contact-inline {
  align-items: center;
  display: flex;
  margin: 10px 0 0;
  max-width: 100%;
  min-width: 0;
}

body.item .item-contact-inline .catlo-chat-entry {
  display: inline-flex;
  margin: 0;
  max-width: 100%;
  width: auto;
}

body.item .item-contact-inline .catlo-chat-entry__button {
  min-height: 42px;
  padding: 9px 15px;
  width: auto;
}

body.item .item-contact-inline .catlo-chat-entry__notice {
  margin: 0;
}

@media (max-width: 640px) {
  body.item .catlo-item-action-bar .catlo-chat-entry,
  body.item .catlo-item-action-bar .catlo-chat-entry__button {
    width: auto;
  }

  body.item .catlo-item-action-bar .catlo-chat-entry {
    flex: 0 0 auto;
  }
}

@media (max-width: 430px) {
  body.item .item-contact-inline .catlo-chat-entry,
  body.item .item-contact-inline .catlo-chat-entry__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catlo-chat-entry__button {
    transition: none;
  }
}
