@charset "UTF-8";

/* --- AI Chat Link --- */
.flex-container-includes-aiChat {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.flex-container-includes-aiChat > *:not(.un-panel-aiChat) {
  flex-grow: 1;
}

.un-panel-aiChat {
  align-items: center;
  background-image: linear-gradient(102deg, #ff4c76 0%, #7266f8 51%, #2bdfe8 100%);
  border-radius: 4px;
  color: #222;
  display: flex;
  flex-direction: row-reverse;
  font-size: 1.6rem;
  font-weight: bold;
  gap: 0 12px;
  width: fit-content;
  margin-bottom: 40px;
  margin-right: auto;
  padding: 18px 60px 18px 20px;
  position: relative;
  max-width: 360px;
}

[lang="es"] .un-panel-aiChat {
  max-width: 510px;
}

@media (max-width: 60.5625em) {
  .un-panel-aiChat {
    font-size: 1.4rem;
    max-width: none;
  }
}

.un-panel-aiChat::before {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  height: calc(100% - 6px);
  left: 3px;
  position: absolute;
  top: 3px;
  transition: background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: calc(100% - 6px);
}

.un-panel-aiChat::after {
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23ea0437%22%3e%3cpath%20d%3d%22M77%2e5,50L30%2e8,96%2e8l%2d4%2e6%2d4%2e6c%2d2%2e1%2d2%2d2%2e1%2d5%2e3,0%2d7%2e4L61,50L22%2e5,11%2e5l8%2e3%2d8%2e3L77%2e5,50z%22%2f%3e%3c%2fsvg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}

.un-panel-aiChat:any-link {
  text-decoration: none;
}

.un-panel-aiChat__title {
    flex: 1;
    position: relative;
}

.un-panel-aiChat__icon {
    height: 40px;
    position: relative;
    width: 40px;
}

@media screen and (min-width: 970px) {
    .un-panel-aiChat {
        font-size: 1.6rem;
        padding-left: 24px;
    }

    .un-panel-aiChat::after {
        right: 24px;
    }
}

@media(hover: hover)and (min-width: 970px) {
    .un-panel-aiChat:hover::before {
        background-color:#f3f3f3;
    }
}