/***
 *
 * Misc
 *
 ***/
.hidden {
	display:none !important;
}

.hidden-opacity {
	opacity:0;
}
.chatbot-input-wrapper .elementor-message {
   display:none;
}

.linkified {
  text-decoration: underline;
  font-weight: 400;
}
/***
 *
 * AI searchfield
 *
 ***/

input#fday-ai-searchfield {
    width: 100%;
    margin-top: 6px;
    background: #f5f5f5;
}


.fday-assistant-prompt {
	position: relative;
    padding: 5px 10px;
    background: #eeeeee;
    color: #043362;
    border-radius: 4px;
    max-width: 75%;
    width: fit-content;
    float: left;
    margin: 10px 10px 10px 10px;
}
.fday-user-prompt {
    padding: 5px 10px;
    background: #4862D5;
    border-radius: 4px;
    max-width: 75%;
    width: fit-content;
    color: #fff;
    float: right;
    margin: 10px 10px 10px 10px;
}

.fday-assistant-homepage-link {
  float: left;
}

.fday-assistant-homepage {
    position: relative;
    padding: 5px 10px;
    background: #797979;
    border-radius: 3px;
    width: fit-content;
    margin: 10px;
    color: #e6e6e6 !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
}

.fday-assistant-homepage svg {
    margin-bottom: -3px;
    margin-left: 5px;
}
.fday-assistant-homepage path {
    fill: #e6e6e6 !important; 
}

.fday-ai-result-wrapper {
    max-height: 490px;
    margin: 0 auto;
    overflow-y: scroll;
    border-radius: 4px;
}


/* HTML: <div class="loader"></div> */
.loader {
  clear: both;
  margin-left: 20px;
  width: 40px;
  aspect-ratio: 4;
  opacity: 0.4;
  background: radial-gradient(circle closest-side,#000 90%,#0000) 0/calc(100%/3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}
@keyframes l1 {to{clip-path: inset(0 -34% 0 0)}}