::placeholder {
  color: #5B5B5C;
}
.disable-events {
   pointer-events: none;
}

#chat_page {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    /*display: flex;
    flex-direction: column;*/
}
#header {
    background-color: #FFFFFF;
}
#chat {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
}
#chat_content {
    /*margin-top: auto;
    margin-bottom: auto;
    */
    margin: auto;

    display: flex;
    flex-direction: column;
    padding-top: 30px;
    justify-content: space-between;
    /*align-items: center;
    align-self: stretch;*/
    background: #FFF;
    max-width: 1200px;
    height: 100%;
}
#first_intro {
    color: #0F0F0F;
    font-family: "EB Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
    max-width: 665px;
    /*align-self: stretch;*/
    align-items: left;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    flex-shrink: 2;
}
#first_intro_title {
    color: #0F0F0F;
    font-family: "EB Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    max-width: 546px;
    text-align: left;
}
#first_intro_padding {
    max-width: 665px;
    height: 64px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 64px;
}
#first_intro_questions {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px 24px;
    align-self: stretch;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
#first_intro_questions_title {
    display: flex;
    justify-content: left;
    color: #0F0F0F;
    font-family: "EB Garamond";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    padding-bottom: 10px;
}
.intro_question {
    display: flex;
    padding: 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 8px;
    background-color: #FAF9F7;
    cursor: pointer;
}
.intro_question:hover {
    box-shadow: 0px 0px 24px 0px #C2E8F5;
    font-weight: 600 !important;
}
.intro_question_text {
    flex: 1 0 0;
    align-self: stretch;
    color: #0B195F;
    /* Desktop/Secondary-text-14/Medium */
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-align: left;
}
.intro_question_text a {
    text-decoration: none;
}

#userbar {
  /*
  position: fixed;
  left: 0;
  height: 70px;
  bottom: 30;
  */
  display: flex;
  flex-direction: column;
  align-self: stretch;
  /*width: 1141px;*/
  padding: 10px;
  align-items: center;
  margin-bottom: 3rem;
}
#user_text {
    width:90%;
    max-width: 640px;
    /*height: 24px;*/
    border:none;
    color: #0B195F;
    padding-left: 10px;
    padding-right: 10px;
    white-space:pre-wrap;
    word-break:break-word;
}
/* Send button inside input box*/
#input_box {
  /* This bit sets up the horizontal layout */
  display:flex;
  flex-direction:row;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: 1px solid;
  /* width: 640px; */
  padding:5px;
  border: 2px solid #0B195F;
}
#user_text:focus{
  outline: none;
  border: 0px;
}

.user_options a img {
	/*border: 1px solid;*/
	border-radius: 8px;
}
.user_options a img:hover {
 outline: 2px solid;
}

/* Add the focus effect to the div so it contains the button */
#input_box:focus-within {
  /*outline: 1px solid blue;*/
}
#sendChatMessageDiv {
}
#sendChatMessage {
  background-color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: auto;
  opacity: 50%;
}
#sendChatMessage:focus{
  outline: none;
}
/* Disabling the hover effect using pointer-events */
.disable-hover {
  pointer-events: none;
}
#sendChatMessage:hover {
  /*box-shadow: 0px 0px 20px 0px #58D7FF;*/
  box-shadow: 0 0 20px 0 #58D7FF;
  /*border-radius: 50%;*/
  background-color: rgb(88, 215, 255, 0.45);
}
#sendChatMessage:disabled {
  box-shadow: none !important;
}
#question_note {
    color: #0B195F;
    text-align: center;
    /* Desktop/Small-text-12/Regular */
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    padding-top: 10px;
}

#chat_sidebar {
    background-color: #FAF9F7 !important;
    align-items: flex-end;
    align-self: stretch;
    width: 299px;
    min-width: 200px;
    padding: 40px 24px 0;
    height: 101%;
    min-height: calc(100vh - 140px);
    position: relative;
    top: -3px;
}
#chat_sidebar_menu {
    position: fixed;
    top: 70px;
}

.conversation {
    max-width: 800px;
}
.conversation-prompt {
}

#footer {
    height: auto;
    bottom: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 16px 24px 16px 24px;

    align-self: stretch;
    align-items: right;
    border-top: 1px solid rgba(11, 25, 95, 0.05);
    background-color: rgba(255, 255, 255, 1.0);
    z-index: 5;
}
#footer_bar {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex: 1 0 0;
}
#footer_company {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    color: #000;
    font-family: Montserrat;
    font-size: 10pt;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    vertical-align: middle;
}
#footer_company img {
    height: 28px;
}
#footer_provider {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;

    width: 100%;
    color: #000;
    font-family: Montserrat;
    font-size: 10pt;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
#footer_provider img {
    height: 12px;
    position: relative;
    top:-2px;
}
.play_thumbnail {
    z-index: 2;
    position: relative;
    width: 48px;
}
.reference_desc_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}
.ref_button {
    background-color: transparent;
    border: 0;
}