/* style/app.css */
* {
  outline: none;
  font-family: "Fira Sans", sans-serif;
}
html {
  overflow-x: hidden;
  height: 100%;
}
body {
  background: url("../img/bg-user-homepage-BBOZYAJO.png");
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden;
  height: 100%;
  padding-top: 80px;
}
p,
a,
span,
button,
label,
small,
textarea,
select,
option,
em,
strong {
  font-family: "Fira Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
}
.color-purple {
  color: #D023E8;
}
header {
  position: absolute;
  width: 100%;
  padding: 2em 0;
}
#hero {
  display: flex;
  overflow: hidden;
  align-items: flex-end !important;
}
#hero2 {
  background:
    linear-gradient(
      0deg,
      #B0BAFF,
      #CCBAE8 50%);
  overflow-x: hidden;
  height: 60%;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero h1 {
  color: #000;
  font-weight: 500;
}
#hero h1 span {
  font-family: "Fira Sans", sans-serif;
  color: #D023E8;
  margin-bottom: 1em;
}
#hero p {
  font-size: 20px;
  color: #000;
  margin-bottom: 0;
  margin-top: 1em;
}
#hero .btn {
  font-family: "Fira Sans", sans-serif;
  background: var(--bs-primary);
  border-radius: 6px;
  padding: 12px 1.5em;
  font-size: 12px;
  font-weight: bold;
  border: 0;
}
#hero .btn:hover {
  background: #9769ff;
}
.logo {
  max-height: 120px;
}
.oracle-float-item {
  position: absolute;
  left: 20%;
  top: 19%;
  z-index: 2;
  animation: floating 3s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  max-width: 120px;
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-call-action-img {
  position: relative;
}
.oracle {
  position: relative;
  max-height: 280px;
}
.default-title {
  font-weight: bold;
  color: #0180DE;
}
.section-spacing {
  padding-top: 3em;
  padding-bottom: 3em;
}
p {
  font-size: 20px;
  color: #434343;
}
.card-ai {
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 2em;
  border: 1px solid #e2f4ff;
}
.card-ai:hover {
  box-shadow: 4px 4px 11px #dff3ff;
}
.card-ai-image {
  background: #EAEAEA;
}
.card-ai-image img {
  width: 100%;
  max-height: 325px;
  object-fit: cover;
}
.card-ai-image img:hover {
  cursor: pointer;
}
.card-ai-bottom {
  padding: 0.5em 1em 0.1em 1em;
  text-align: center;
  min-height: 170px;
  align-items: center;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
}
.card-ai-name h3 {
  color: #0180DE;
  font-size: 20px;
  margin-bottom: 0.2em;
}
.card-ai-job span {
  font-size: 16px;
  color: #434343;
}
.card-ai .btn {
  font-family: "Fira Sans", sans-serif;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  border: 0;
  width: 100%;
  padding: 12px;
  margin-top: 0.5em;
}
.chat-background {
  border-radius: 28px;
  overflow: hidden;
}
.ai-contacts-item-active {
  background: #E6F1FA;
}
.ai-contacts-item:hover {
  cursor: pointer;
}
.ai-chat-top {
  padding: 5px 1em;
  border-bottom: 1px solid #9900d5;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #9767ff;
}
.ai-contacts-top strong {
  font-size: 18px;
  color: #0072C6;
  font-weight: bold;
  display: block;
}
.ai-contacts-top span {
  font-size: 18px;
  color: #434343;
  display: block;
}
.ai-contacts-scroll::-webkit-scrollbar {
  width: 4px;
}
.ai-contacts-scroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}
.ai-contacts-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.ai-contacts-scroll::-webkit-scrollbar-track {
  background-color: #eee;
}
.ai-contacts-scroll::-webkit-scrollbar-track:hover {
  background-color: #ddd;
}
.ai-contacts-item {
  padding: 1em;
  display: flex;
  gap: 1em;
  align-items: center;
  border-bottom: 1px solid #ebf7ff;
}
.ai-contacts-item:hover {
  background: #550176;
}
.ai-contacts-item-active:hover {
  background: #E6F1FA;
}
.ai-contacts-name {
  color: #070707;
  font-size: 16px;
  font-weight: bold;
  font-family: "Fira Sans", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ai-contacts-job {
  color: #7E7E7E;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ai-contacts-image {
  overflow: hidden;
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
}
.ai-contacts-image img {
  width: 100%;
}
.col-contacts-border {
  border-right: 1px solid #E0E4E7;
}
.wrapper-ai-chat-top {
  display: flex;
  gap: 0 16px;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
}
.wrapper-ai-chat-top:hover {
  background: #0000003a;
  cursor: pointer;
  border-radius: 12px;
}
.ai-chat-top-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.ai-chat-top-image img {
  width: 100%;
}
.ai-chat-top-name h4 {
  color: #FFF !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.ai-chat-top-job {
  display: block;
  font-size: 14px;
  color: #FFF;
}
.online-bullet {
  background: #02D00A;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
}
.icons-options .dropdown-toggle {
  padding: 0;
  border: 0;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active,
.dropdown-toggle::after {
  color: #FFF;
}
.icons-options {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.icons-options img {
  padding: 0 4px;
  height: 16px;
}
.icons-options img:hover {
  cursor: pointer;
}
#extra-service-background {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 1em;
  background-size: cover;
  position: relative;
  border-radius: 28px;
  padding-bottom: 1em;
  margin-bottom: 24px;
}
.chat-frame {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 1em;
  background-size: cover;
  position: relative;
}
.chat-frame-talk {
  height: 70vh !important;
}
.body-frame-chat {
}
.chat-frame-talk #overflow-chat {
  padding-bottom: 6em;
  background-size: cover;
  background-repeat: no-repeat;
}
.conversation-thread {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin: 1.5em 0;
  position: relative;
}
.user-image {
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #2369FF 0%,
      #8240FF 35%,
      #C324ff 75%);
}
.user-image img {
  width: 100%;
}
.message-container {
  background:
    linear-gradient(
      90deg,
      #2369FF 0%,
      #8240FF 35%,
      #C324ff 75%);
  border-radius: 24px;
  padding: 2px;
  min-width: 310px;
  position: relative;
}
.thread-ai .message-container {
  margin-right: 7em;
  border-bottom: 4px solid #e3e3e3;
}
.thread-user {
  justify-content: flex-end;
}
.thread-user .message-container {
  background: #8240ff;
}
.thread-user .message-text::before {
  display: none;
}
.chat-response {
}
.chat-response p {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.thread-ai .user-name h5 {
  font-size: 14px;
  font-weight: bold;
  color: #9767ff;
  margin-bottom: 0.3em;
}
.thread-user .user-name h5 {
  color: #b0baff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.3em;
}
.message-container .user-name h5 br {
  display: none;
}
.chat-response {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.thread-user .chat-response {
  color: #fff;
}
.thread-user .date-chat {
  color: #c6b6ff;
}
.gradient_bg {
  background:
    linear-gradient(
      90deg,
      #2369FF 0%,
      #8240FF 35%,
      #C324ff 75%);
  padding: 1.2em;
  border-radius: 20px;
  background: #fff;
}
.thread-user .gradient_bg {
  background: #8240ff;
}
.message-container .message-text {
  color: #2c2c2c;
  font-size: 16px;
  position: relative;
}
.message-container::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: -9px;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.date-chat {
  font-size: 14px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: #939393;
}
.date-chat img {
  height: 14px;
}
#overflow-chat {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 1em;
}
.message-area-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #9facff;
  padding: 10px 0;
}
.character-typing {
  position: absolute;
  z-index: 2;
  top: -32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.character-typing div {
  background: #2e2e2ede;
  text-align: center;
  border-radius: 6px;
  color: #FFF;
  padding: 6px 16px;
  font-weight: 300;
  display: inline-block;
  font-size: 16px;
}
.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin: 0 auto;
}
.chat-input textarea {
  width: 100%;
  margin-bottom: 0;
  border: unset;
  resize: none;
  border-radius: 10px;
  color: #4E4E4E;
  display: flex;
  padding: 10px 1em;
  font-size: 18px;
  background: #FFF;
}
.chat-input textarea:focus {
  border: 1px solid #d059ff;
}
.btn-send-chat,
.btn-cancel-chat {
  background: #8240ff;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Fira Sans", sans-serif;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.btn-send-chat:hover {
  background:
    linear-gradient(
      180deg,
      #0067b3 0%,
      #0072C6 100%);
}
.btn-cancel-chat {
  background:
    linear-gradient(
      180deg,
      #db2020 0%,
      #c50d00 100%);
}
.btn-cancel-chat:hover {
  background: #ff3434;
}
.about_modal {
  background: url("../img/icon-tips-7RNDO3BV.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
.about_modal:hover {
  background: url("../img/icon-tips-hover-RZU6534Y.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
.settings_dropdown {
  background: url("../img/icon-settings-FJILO7IL.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
.settings_dropdown:hover {
  background: url("../img/icon-settings-hover-Z2E6KV7M.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
#chat-background .dropdown-toggle::after {
  color: transparent;
}
#overflow-chat::-webkit-scrollbar {
  width: 6px;
}
#overflow-chat::-webkit-scrollbar-thumb {
  background-color: #9767ff;
  border-radius: 5px;
}
#overflow-chat::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
#overflow-chat::-webkit-scrollbar-track {
  background-color: #eee;
}
#overflow-chat::-webkit-scrollbar-track:hover {
  background-color: #ddd;
}
#toast-container > div {
  opacity: 1 !important;
}
#toast-container > div:hover {
  box-shadow: none !important;
}
.toast {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.copy-code,
.copy-text {
  position: absolute;
  top: 6px;
  font-size: 14px;
  color: #939393;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5px;
  padding: 0.3em 0.6em;
  gap: 0 5px;
}
.copy-code {
  background: transparent;
  color: #FFF;
  border: 1px solid #EAEAEA;
  border-radius: 7px;
}
.copy-text {
  background: transparent;
  top: auto;
  bottom: 13px;
  border: 0px solid #939393;
  font-size: 14px;
  color: #939393;
  border-radius: 8px;
  right: 11px;
}
.copy-text:hover {
  background: #017cb4;
}
.copy-text:hover {
  background: transparent;
  cursor: pointer;
  color: #9767ff;
}
.thread-user .copy-text {
  color: #c6b6ff;
}
.thread-user .copy-text:hover {
  color: #fff;
}
.no-white-space {
  white-space: inherit;
}
.chat-audio {
  position: absolute;
  right: 15px;
  top: 16px;
}
.chat-audio img {
  height: 24px;
}
.chat-audio img:hover {
  cursor: pointer;
  fill: #b0baff;
}
.copy-text {
  display: none;
}
.message-container:hover .copy-text {
  display: block;
}
.chat-response-highlight {
  background: #03a9f4;
  color: #FFF;
}
.no-white-space {
  white-space: inherit;
}
.expire-img-message {
  background: #2196f3;
  padding: 7px;
  border-radius: 7px;
  margin-top: 1em;
  font-size: 14px;
  color: #fff;
}
#loading {
  background:
    linear-gradient(
      180deg,
      #673ab7 0%,
      #8746fb 100%);
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
}
#loading svg {
  transform: scale(3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  height: 100%;
}
.wrapper-name-and-chat {
  width: 100%;
}
.wrapper-image-ia {
  position: relative;
  border: 1px solid #EAEAEA;
  padding: 1em;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  min-height: 300px;
}
.image-ia {
  background-color: #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-ia img {
  object-fit: cover;
  width: 100%;
}
.wrapper-image-ia::-webkit-scrollbar {
  width: 10px;
}
.wrapper-image-ia::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.wrapper-image-ia::-webkit-scrollbar-thumb {
  background: #888;
}
.wrapper-image-ia::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.ia-image-prompt-label {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 16px;
  color: #2196f3;
  display: block;
  border: 1px solid #2196f3;
  margin-top: 6px;
}
.wrapper-image-ia svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(3.5);
}
#load-character {
  padding-bottom: 1em;
}
code {
  white-space: pre-wrap;
  border-radius: 8px;
}
pre {
  border-radius: 8px;
  border: 2px solid #9c27b0;
  color: #d5d5d5;
  background: #1d2021;
  margin: 0;
  position: relative;
  padding: 0.5em 1em;
}
.dropdown-menu {
  border-radius: 10px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 0 5px;
  font-size: 14px;
}
.thread-user .message-container::before {
  display: none;
}
footer {
  background:
    linear-gradient(
      180deg,
      #1995F0 0%,
      #0072C6 100%);
  padding: 20px 0;
  border-top: 1px solid #249ef7;
}
footer img:hover {
  cursor: pointer;
}
.cursor {
  display: inline-block;
  width: 0.2em;
  height: 1.2em;
  margin-left: 0.2em;
  background-color: #323232;
  animation: blink 0.5s infinite;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#microphone-button {
  background: url("../img/icon-mic-LDPBFOMZ.png");
  background-size: 70px;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
}
#microphone-button:hover {
  cursor: pointer;
  background: url("../img/icon-mic-hover-GK6VQ6HG.png");
  background-size: 70px;
  background-repeat: no-repeat;
}
#callButton {
  background: url("../img/icon-call-LRVLYSYH.png");
  background-size: 70px;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
}
#callButton:hover {
  cursor: pointer;
  background: url("../img/icon-call-hover-5DIPPV73.png");
  background-size: 70px;
  background-repeat: no-repeat;
}
#body-frame {
  padding: 0;
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding: 2px;
  border-radius: 30px;
}
.select-option-title {
  font-weight: 700;
  font-size: 21px;
  padding: 32px 0 0.6em 0;
}
.cards-options {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.6em;
}
.card-option {
  border-image:
    linear-gradient(
      #2369FF,
      #8240FF,
      #C324FF) 30;
  border-width: 1px;
  border-radius: 8px;
  width: 100%;
  max-width: 210px;
  min-width: 190px;
  padding: 0em 0.6em;
  min-height: 200px;
}
.card-option:hover {
  cursor: pointer;
}
.card-option-title h5 {
  margin-bottom: 0;
  font-size: 16px;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10px;
  font-weight: 500;
}
.wrapper-cards-option {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  text-align: center;
  justify-items: center;
  align-items: center;
  max-width: 830px;
  margin: 0 auto;
  gap: 10px 35px;
  position: relative;
}
.card-tarot-select {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 2em 5em;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-direction: column;
  overflow: auto;
}
.select-cards-label {
  background: #9c27b0;
  color: #FFF;
  font-size: 1.2em;
  padding: 0.4em 1.4em;
  border-radius: 50px;
  z-index: 23;
  display: inline-block;
}
.tarot-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.tarot-grid-item {
  width: 100px;
  height: 150px;
}
.tarot-card {
  position: relative;
  width: 100%;
  height: 163px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}
.tarot-card.flipped {
  transform: rotateY(180deg);
}
.tarot-front,
.tarot-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.tarot-front {
  transform: rotateY(180deg);
}
.tarot-back {
  transform: rotateY(0deg);
}
.tarot-grid-item img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ad27e3;
}
.tarot-zoom {
  width: 260px;
  height: inherit;
}
.tarot-cards-display {
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding: 8px;
  display: none;
}
.tarot-cards-display .tarot-grid-item {
  height: 170px;
}
.tarot-card-removed {
  opacity: 0.4;
}
.wheel {
  position: absolute;
  overflow: hidden;
  top: 0;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 125px;
}
.wheel-img {
  animation-name: rotate;
  animation-duration: 100s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
}
.card-option-img img {
  height: 135px;
  border-radius: 12px;
  margin-top: 10px;
}
.card-option-more {
  width: 180px;
  height: 135px;
  background: #8340ff2b;
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 0 15px;
  background-size: cover;
  background-position: center;
  img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }
}
.extra_services_wrapper .overlay2 {
  height: auto;
  width: auto;
}
.extra_services_wrapper .overlay2 .card-option-more {
  opacity: 0.4;
  border-radius: 20px;
}
.card-option:hover img {
  transform: scale(1.05);
  transition: all 0.3s;
}
.card-option:hover .card-option-more {
  transform: scale(1.05);
  transition: all 0.3s;
}
.overlay2 .card-option:hover img {
  transform: unset;
  cursor: initial;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hideOnMobile {
  display: none !important;
}
.body-frame-chat {
  margin-top: 6em;
}
.btn-close-chat-cards {
  background: #F44336;
  color: #FFF;
}
.btn-close-chat-cards:hover {
  cursor: pointer;
}
.wrapper-buttons-select-cards {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1em;
}
#hero2 .nav-link {
  color: #fff;
}
#hero2 .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
}
#hero2 .tab {
}
#modalCall .ai-chat-top-image {
  width: 40px;
  height: 40px;
}
#modalCall .ai-chat-top-name h4 {
  color: #000 !important;
  font-weight: 500;
  font-size: 14px;
}
#modalCall .ai-chat-top-job {
  color: darkslategray;
  font-size: 12px;
}
#modalCall .wrapper-ai-chat-top {
  gap: 0 12px;
}
#modalCall .ai-call-image {
  background: transparent;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
#modalCall .ai-call-image img {
  width: 100%;
}
#modalCall .modal-header {
  opacity: 0.9;
  background: #fff;
}
#modalCall .modal-body {
  padding-top: 40px;
}
#modalCall .call-body {
  margin: auto;
  align-content: center;
  width: 100%;
  max-width: 400px;
  background: white;
  opacity: 0.9;
  padding: 30px;
  border-radius: 12px;
}
.login_bg {
  height: 100%;
  background:
    linear-gradient(
      0deg,
      #B0BAFF,
      #CCBAE8 50%);
}
.service-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}
.service-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 18px;
  padding-top: 20px;
}
.service-logo-container {
  background: #6430c5;
  border-radius: 12px;
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  padding: 20px;
  cursor: pointer;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.service-logo-container:hover {
  transform: scale(1.05);
  transition: all 0.3s;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.service-modal-bg {
  background-color: rgba(222, 214, 255, 0.8);
  backdrop-filter: blur(9px);
  border-radius: 20px;
  border: 1px solid #6430c574;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 18px 32px 32px;
}
.bi-x {
  font-size: 1.6rem;
  cursor: pointer;
}
.bi.bi-x:hover {
  color: #6430c5;
}
@media (max-width: 767px) {
  .main-div {
    margin: auto;
    text-align: center;
    max-width: 500px;
    width: 90%;
  }
  .ul_class {
    max-width: 200px;
    margin: 0 auto 30px;
  }
  .background_white {
    background: #f6f6f7;
    border-radius: 30px;
    padding: 30px 0px;
  }
  .padding_welcome_message {
    padding-top: 100px;
  }
  .akido_size {
    height: 50px;
  }
  .close-chat-cards span {
    display: none;
  }
  .custom-body {
  }
  .oracle-float-item {
    display: none;
  }
  .character-typing {
    top: -42px;
    right: auto;
    margin: initial;
  }
  .character-typing div {
    font-size: 14px;
    padding: 4px 16px;
  }
  #microphone-button,
  #callButton {
    height: 50px !important;
    width: 52px !important;
    background-size: 50px !important;
  }
  .ai-chat-top-name h4 {
    font-size: 16px;
  }
  .ai-chat-top-job {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    overflow: hidden;
  }
  .ai-contacts-top {
    display: none;
  }
  .ai-contacts-top {
    border: 0;
    display: none;
  }
  footer {
    display: none;
  }
  .toggle_employees_list,
  .ai-contacts-scroll {
    display: none;
  }
  .icons-options img {
    padding: 0 2px;
  }
  .ai-contacts-top,
  .ai-chat-top {
    min-height: auto;
    z-index: 999;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  #overflow-chat {
    padding-right: 10px;
    padding-left: 10px;
    height: auto;
    padding-bottom: 4em;
  }
  .copy-text {
    display: block;
  }
  .user-image {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -15px;
    z-index: 1;
    left: -9px;
  }
  .thread-ai .message-container {
    margin-right: 0;
  }
  .message-area-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    right: 0;
    left: 0;
  }
  .chat-input textarea {
    padding: 5px;
    font-size: 16px;
    height: 46px;
    border-radius: 3px;
    border: 1px solid #bfbfbf;
  }
  .chat-input {
    gap: 10px;
  }
  .btn-send-chat,
  .btn-cancel-chat {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 30px;
  }
  .btn-send-chat span,
  .btn-cancel-chat span {
    display: none;
  }
  .header-min {
    display: none;
  }
  .col-contacts-border {
    display: none;
  }
  .ai-chat-top-image {
    min-width: 45px;
    width: 45px;
    height: 45px;
  }
  .ai-chat-top {
  }
  .card-ai-bottom {
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hero .btn {
    font-size: initial;
  }
  .card-ai-image img {
    max-height: initial;
  }
  .card-ai .btn {
    padding: 8px;
  }
  #hero p {
    padding-right: 0;
    font-size: inherit;
  }
  .container-fluid-md {
    max-width: 95%;
  }
  #hero {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: auto;
  }
  .oracle {
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .header-slogan {
    margin-top: 10px;
  }
  .container {
    max-width: 100%;
  }
  header {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
  }
  .wheel {
    left: 0;
  }
  .card-option {
    max-width: 190px;
  }
  #body-frame {
    width: 90%;
    padding: 1px;
    margin: 0 auto;
  }
  .select-cards-label {
    margin-top: 0;
    font-size: 1em;
  }
  .tarot-grid-item {
    width: 65px;
    height: 100px !important;
  }
  .logo {
    max-height: 90px;
  }
  .oracle-float-item {
    left: 0;
  }
  .chat-frame {
    height: auto;
    padding: 30px 15px;
  }
  .chat-frame-talk {
    height: 100% !important;
    margin-top: 15px;
  }
  .select-option-title {
    padding: 0 0 12px;
    font-size: 20px;
  }
  .card-option {
    width: 140px;
    min-width: inherit;
    min-height: 150px;
    height: 100%;
    padding-bottom: 8px;
  }
  #extra-service-background {
    padding: 30px 15px;
  }
  .card-option-more {
    width: 200px;
    height: 100px;
    background: #8340ff2b;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    img {
      width: 150px;
      height: 50px;
      object-fit: contain;
    }
  }
  #load-character {
    padding-bottom: 0;
  }
  .card-option-img img {
    height: 100px;
    margin-top: 10px;
  }
  .card-option-title h5 {
    min-height: unset;
    line-height: 1.3;
    font-size: 13px;
    margin-top: 4px;
  }
  .body-frame-chat {
    padding: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .card-tarot-select {
    position: inherit;
    padding: 0.5em;
  }
  .tarot-card {
    height: 100px;
  }
  .tarot-cards-display {
    margin-bottom: 1em;
  }
  .message-area-bottom .col {
    padding: 0 5px;
  }
  .service-modal-bg {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .wrapper-cards-option {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr) !important;
    position: relative;
    gap: 10px 30px;
  }
}
@media (max-width: 895px) {
  .wrapper-cards-option {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .extra_services_wrapper {
    grid-template-columns: repeat(1, 4fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-div {
    margin: auto;
    text-align: center;
    max-width: 500px;
    width: 90%;
  }
  .ul_class {
    max-width: 200px;
    margin: 0 auto 30px;
  }
  .padding_welcome_message {
    padding-top: 60px;
  }
  #overflow-chat {
    padding-right: 10px;
    padding-left: 10px;
    height: 100%;
    padding-bottom: 4em;
  }
  .custom-body {
  }
  .container {
    max-width: 95%;
  }
  .card-ai-image img {
    max-height: initial;
  }
  .card-ai .btn {
    padding: 8px;
  }
  #hero p {
    padding-right: 0;
  }
  #hero {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: auto;
  }
  #chat-background .container {
    max-width: 100%;
  }
  .copy-text {
    display: block;
  }
  header {
    position: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #230338;
  }
  .wheel {
    left: 0;
  }
  .card-option {
    max-width: 190px;
  }
  #body-frame {
    padding: 1px;
    width: 95%;
  }
  .body-frame-chat {
    width: 100% !important;
    box-shadow: none !important;
  }
  .chat-frame-talk {
    height: 100% !important;
  }
  .select-cards-label {
    margin-top: 0;
    font-size: 1em;
  }
  .card-tarot-select {
    padding: 2em 1em;
    position: inherit;
    overflow: hidden;
  }
  .tarot-grid-item {
    width: 80px;
    height: 125px;
  }
  .body-frame-chat {
    padding: 0px !important;
    background: transparent !important;
  }
  .logo {
    max-height: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-div {
    margin: auto;
    text-align: center;
    max-width: 700px;
    width: 90%;
  }
  .ul_class {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .padding_welcome_message {
    padding-top: 60px;
  }
  #hero p {
    padding-right: 4.5em;
  }
  .ai-contacts-job {
    -webkit-line-clamp: 1;
  }
  .card-ai-image {
    min-height: 230px;
  }
  .oracle-float-item {
    left: 0;
    top: 27%;
  }
  #hero h1 {
    font-size: 2em;
  }
  .wheel {
    left: 0;
  }
  .card-tarot-select {
    padding: 2em 1em;
  }
  .tarot-grid-item {
    width: 90px;
  }
  .tarot-grid-container {
    gap: 0 20px;
  }
  .logo {
    max-height: 120px;
  }
}
@media (min-width: 1200px) {
  .main-div {
    margin: auto;
    text-align: center;
    max-width: 900px;
    width: 90%;
  }
  .ul_class {
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .padding_welcome_message {
    padding-top: 60px;
  }
  .card-ai-image {
    min-height: 280px;
  }
  .logo {
    max-height: 120px;
  }
  .ai-contacts-job {
    -webkit-line-clamp: 1;
  }
  @media (min-width: 1400px) {
    .card-ai-image {
      min-height: 300px;
    }
    .oracle {
      right: 5%;
    }
    .logo {
      max-height: 120px;
    }
  }
}
.tab {
  display: none;
}
.container h4 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}
form .input-field {
  flex-direction: row;
  column-gap: 10px;
}
.input-field input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.input-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
  display: none;
}
form button.active {
  background: #4070f4;
  pointer-events: auto;
}
form button:hover {
  background: #0e4bf1;
}
#main-page {
  height: 100%;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.overlay2 {
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #7b7b7b;
  border-radius: 20px;
  position: relative;
  height: 200px;
}
.overlay2 .lock {
  width: 20px;
  position: absolute;
  z-index: 9998;
  top: 8px;
  right: 6px;
}
.overlay2 .card-option img {
  opacity: 0.5;
}
.chat_remaining {
  border: 1px solid dimgrey;
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 14px;
  color: dimgrey;
  margin: 16px auto 12px;
  text-align: center;
  width: fit-content;
}
.chat_duration {
  text-align: center;
  color: dimgrey;
  margin: 16px 0 12px;
}
#callAgain,
#exitButton {
  padding: 6px 32px;
  width: 140px;
  margin: 4px 0;
}
#toast-container > .toast-error {
  background-image: url("../img/icon-cross-7LJKJHI2.png") !important;
  border-color: #f98888;
  background-color: #fef2f2;
  background-size: 20px;
}
#toast-container > .toast-success {
  background-image: url("../img/icon-tick-YX6NKHAJ.png") !important;
  border-color: #36c595;
  background-color: #ecfdf5;
  background-size: 20px;
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: #c09fff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 10px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.5px #c09fff;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 0.5;
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #b0baff;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: #c09fff;
  border-radius: 10px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-lg,
.btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg) ;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: black;
  text-decoration: none;
  background: none;
  border: 0;
  transition:
    color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out;
}
.nav-link:hover,
.nav-link:focus {
  color: #9900d5;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: black;
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px 0px 4px #9900d5;
}
.background_linear {
  background:
    linear-gradient(
      122.12deg,
      #2369FF 50%,
      #8240FF 50%),
    #C324FF;
  padding: 2px;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
}
.background_white {
  background: #f6f6f7;
  border-radius: 30px;
  padding: 30px 30px;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: none;
}
.nav-tabs {
  border: 0px solid transparent;
}
.greetings {
  background:
    linear-gradient(
      90deg,
      #2369FF 0%,
      #8240FF 35%,
      #C324ff 75%);
  padding: 1px;
  border-radius: 30px;
  width: fit-content;
}
.greetings_container {
  background: #f6f6f7;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  padding: 15px 60px;
  width: fit-content;
}
.btn_explore {
  border-radius: 30px;
  padding: 8px 24px;
  margin-top: 12px;
}
.greetings_username {
  color: var(--bs-primary);
}
.closeChatButton {
  background: url("../img/icon-close-chat-S2MQ5WJJ.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
.closeChatButton:hover {
  background: url("../img/icon-close-chat-hover-OJ26QQKO.png");
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0 4px;
}
.profile_img_container {
  display: flex;
  justify-content: space-evenly;
}
.profile_img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}
.profile_img:hover {
  cursor: pointer;
  opacity: 0.6;
}
.selected_profile_img {
  border: 1px solid var(--bs-primary);
}
.list-group-item i:hover {
  cursor: pointer;
  opacity: 0.6;
}
.list-group-item:hover {
  cursor: pointer;
  background: #8340ff60;
}
.tnc_div {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 16px;
  color: #000;
  padding: 15px 0;
}
#tncStatus {
  accent-color: #8340FF;
  cursor: pointer;
  min-width: 15px;
  min-height: 15px;
  border-radius: 5px;
  margin-top: 5px;
}
.link-space {
  color: #8240FF;
  text-decoration: none;
  padding: 0 2px;
}
.link-space:hover {
  color: #8240FF;
  text-decoration: underline;
  padding: 0 2px;
}
.extra_services_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  text-align: center;
  justify-items: center;
  align-items: center;
  max-width: 830px;
  margin: 0 auto;
  gap: 10px 35px;
  position: relative;
}
.lang_dropdown {
  position: relative;
  right: 0;
}
.lang_dropdown .dropdown-toggle::after {
  color: #000;
}
.lang_dropdown .dropdown-toggle {
  border-radius: 20px;
  background: #b0baff;
  font-weight: 600;
  color: #000;
  border: unset;
  padding: 8px 18px;
}
@media (max-width: 991px) {
  .greetings_container {
    font-size: 18px;
    padding: 15px 25px;
  }
  .oracle {
    max-height: 280px;
  }
}
@media (max-width: 930px) {
  .greetings_container {
    font-size: 16px;
    padding: 8px 15px;
  }
  .oracle {
    max-height: 220px;
  }
  .overlay2 {
    height: 150px;
  }
  .extra_services_wrapper .overlay2 {
    width: auto;
  }
}
@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
  .extra_services_wrapper {
    grid-template-columns: repeat(1, 4fr) !important;
  }
  .greetings {
    margin: 20px auto 12px;
  }
  .about_modal,
  .about_modal:hover,
  .settings_dropdown,
  .settings_dropdown:hover,
  .closeChatButton,
  .closeChatButton:hover {
    margin: 0;
    background-size: 45px;
    width: 45px;
    height: 45px;
  }
  .service-modal {
    padding: 15px;
  }
  .service-modal-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px;
  }
  .service-logo-container {
    height: 120px;
    img {
      height: 100%;
    }
  }
  .service-modal-bg {
    padding: 20px;
  }
}
