#front-button-container-0 {
  position: fixed;
  right: 25px;
  bottom: 4px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}

.front-open-chat-button {
  position: relative;
  background: transparent !important;
  cursor: pointer;
  border: 1px solid transparent !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0 0.25rem !important;
}
.front-open-chat-button:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.front-open-chat-button-image {
  display: block;
  background-image: url('https://static.aim.front.ai/assets/images/oulu/ouka_chat.png');
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  #front-button-container-0 {
    right: 8px;
  }
}

.front-proactive-message-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #001e96;
  width: 160px;
  border-radius: 16px 16px 0 16px;
  padding: 16px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px 0px;
  animation: scale-in-br 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 3.5s;
}

.front-proactive-message-container p {
  font-family: 'Barlow-Bold', arial, helvetica, sans-serif;
  color: #000f4d !important;
  font-size: 1rem !important;
  padding: 0;
  margin: 0 !important;
}

.front-proactive-message-arrowicon {
  display: none;
  position: absolute;
  right: 8px;
  bottom: 4px;
}

.front-proactive-message-close {
  position: absolute;
  z-index: 5000;
  color: #000f4d !important;
  background-color: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
  outline: none;
  padding: 0 !important;
  cursor: pointer;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  animation: scale-in-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 3.6s;
}

.front-proactive-message-close:hover {
  background-color: #000f4d22;
}

.front-proactive-message-indicator {
  position: absolute;
  bottom: 38px;
  right: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e10069;
  color: #fff;
  border-radius: 100%;
  font-size: 18px;
  animation: scale-in-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 2s;
}

@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-br {
  0% {
    transform: scale(0);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scale(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
