:root {
  --primary: #2467eb;
  --purple-lite: #c9d8f8;
  --grey-bg: #ededed;
  --black: black;
  --white: white;
  --dark-primary: #0147d1;
  --purple-lighter: #edf3ff;
  --dark-grey: #a7a7a7;
  --secondary-bg: #f3f6fb;
  --light-red: #ff4e4e;
  --cornflower-blue: rgba(105, 145, 214, .07);
  --purple-lite-1: #f7f9fd;
  --link-color: #548dff;
  --link-background: #ecf0f8;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 27px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-size: 16px;
  line-height: 27px;
}

sup {
  background-color: var(--purple-lite);
  color: var(--primary);
  cursor: pointer;
  border-radius: 3px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 10px;
  font-weight: 600;
}

.header {
  z-index: 999;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 80px;
  display: flex;
  position: relative;
}

.left-hand-side {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.menu-toggler {
  cursor: pointer;
  border-radius: 60px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.menu-toggler:hover {
  background-color: var(--grey-bg);
}

.logo-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.text-block {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.right-hand-side {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 60px;
  display: flex;
}

.email-container {
  align-items: center;
  height: 100%;
  display: flex;
}

.email-container.all-whiten-in-dark-mode {
  display: none;
}

.user-pic-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image {
  border-radius: 50px;
}

.text-block-2 {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.body {
  height: 100%;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  display: block;
  overflow: visible;
}

.main-content {
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-around;
  height: auto;
  min-height: auto;
  margin-bottom: 0;
  margin-right: 60px;
  display: flex;
  position: relative;
}

.body-left-side {
  width: 30%;
  height: 100%;
  padding-right: 0;
}

.body-right-side {
  background-color: #f3f6fb;
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.menu-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--black);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  height: auto;
  padding: 15px;
  text-decoration: none;
  display: flex;
}

.menu-link:hover {
  background-color: var(--grey-bg);
  color: var(--black);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.image-2 {
  width: 22px;
  font-size: 19px;
}

.text-block-3 {
  font-size: 16px;
}

.ai-response-container {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.ai-response-container.ai-disclaimer-container {
  box-shadow: none;
  background-color: rgba(201, 216, 248, .59);
}

.ai-response-container.ai-response-lefty {
  width: 85%;
}

.ai-response-container.ai-prompt-response-container {
  width: 100%;
  max-width: 850px;
}

.ai-gif-container {
  justify-content: center;
  align-items: flex-start;
  width: 60px;
  display: flex;
}

.ai-response-text-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  padding-right: 30px;
  display: flex;
}

.ai-response-text-container.default-ai-response-text-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.image-3 {
  width: 30px;
}

.image-3.whiten-in-dark-mode.disclaimer-img {
  width: 23px;
}

.image-3.bigger-icons {
  width: 45px;
}

.image-3.medium-icon {
  width: 30px;
}

.ai-default-msg {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.bold-text {
  font-weight: 600;
}

.bold-text.non-bold-text {
  font-weight: 400;
}

.ai-default-suggestions-block {
  margin-top: 10px;
}

.text-block-4 {
  color: var(--primary);
}

.div-block-4 {
  background-color: var(--purple-lite);
  border-radius: 15px;
}

.text-block-5 {
  color: var(--black);
  font-size: 15px;
  line-height: 28px;
}

.div-block-5 {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 10px;
  padding: 0;
  display: flex;
}

.dont-show-again {
  color: var(--dark-primary);
  cursor: pointer;
  border-radius: 7px;
  padding: 7px 10px;
  font-weight: 600;
  position: static;
}

.dont-show-again:hover {
  background-color: rgba(36, 102, 235, .08);
}

.dont-show-again.primary-color-in-dark-mode.primary-bg-hover-in-dark-mode:hover {
  background-color: #bfd2fa;
}

.upper-area {
  object-fit: fill;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  overflow: auto;
}

.bottom-area {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.suggestions-prompt-container {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  text-align: right;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-left: 0;
}

.image-4 {
  width: 23px;
  display: none;
  overflow: hidden;
}

.suggestion-prompt-element {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  cursor: pointer;
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 30px;
  padding: 2px 13px 2px 14px;
  font-size: 13px;
  display: flex;
}

.suggestion-prompt-element:hover, .suggestion-prompt-element.black-bg-dark-mode.primary-color-in-dark-mode.primary-border-in-dark-mode.primary-bg-hover-in-dark-mode:hover {
  background-color: var(--purple-lighter);
}

.form {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  padding-left: 0;
  display: flex;
}

.form-block {
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.submit-button {
  background-color: rgba(0, 0, 0, 0);
  width: 1px;
  display: none;
}

.input-container {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.input-submit-icon {
  opacity: .5;
  filter: grayscale();
  cursor: pointer;
  width: 25px;
  padding-bottom: 0;
}

.input-submit-container {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 44px;
  display: flex;
}

.user-prompt-input-field {
  border: .6px solid #000;
  border-radius: 15px;
  height: 100%;
  padding-left: 10px;
  padding-right: 100px;
  font-size: 16px;
}

.user-prompt-input-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode.hidden {
  display: none;
}

.div-block-8 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 10px;
}

.user-input-actions-container {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 30px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  position: relative;
}

.user-input-actions-container:hover {
  background-color: var(--grey-bg);
}

.user-input-actions-container.upload-file-input-action-container {
  background-color: var(--grey-bg);
  display: none;
}

.user-input-actions-container.upload-file-input-action-container:hover {
  background-color: rgba(167, 167, 167, .53);
}

.user-input-actions-container.upload-file-input-action-container.greyish-bg-in-darkmode.all-whiten-img-on-hover-in-dark-mode {
  display: flex;
  overflow: auto;
}

.user-input-actions-container.greyish-bg-in-darkmode.user-input-microphone-btn.microphone-is-active {
  background-color: #d4d4d4;
}

.image-6 {
  width: 17px;
}

.image-6.whiten-in-dark-mode.ai-audio-chat-icon {
  width: 19px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.div-block-9 {
  width: 100%;
}

.user-prompt-text-container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.user-prompt-text-container.display-none {
  display: none;
}

.user-prompt-text {
  background-image: linear-gradient(213deg, rgba(36, 103, 235, .77), var(--primary));
  color: var(--white);
  border-radius: 8px;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 700px;
  height: 100%;
  min-height: 50px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 15px;
  line-height: 25px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.image-7 {
  filter: invert() brightness();
  width: 15px;
}

.quiz-answer-btn {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  background-image: linear-gradient(234deg, rgba(255, 255, 255, .38) 45%, #2467eb);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 80px;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
}

.quiz-answer-btn:hover {
  background-image: none;
}

.quiz-answer-btn.cancel-btn {
  background-color: var(--dark-grey);
  background-image: none;
}

.quiz-answer-btn.cancel-btn:hover {
  background-color: var(--primary);
}

.quiz-yes-or-no-box-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div-block-10 {
  width: 100%;
}

.image-8 {
  opacity: .59;
  width: 40px;
}

.flex-block {
  background-color: rgba(201, 216, 248, .2);
  border-radius: 15px;
  align-items: center;
  width: auto;
  height: 100px;
  margin-top: 0;
  padding-right: 10px;
  display: none;
}

.div-block-11 {
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 100%;
  display: flex;
}

.div-block-12 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.import-action {
  color: var(--primary);
  cursor: pointer;
  border-radius: 4px;
  padding: 3px 10px;
  font-weight: 700;
}

.import-action:hover {
  background-color: rgba(201, 216, 248, .52);
}

.import-action.cancel-action {
  color: #707070;
}

.import-action.cancel-action:hover {
  background-color: rgba(212, 212, 212, .37);
}

.flex-block-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
}

.text-block-6 {
  margin-bottom: 3px;
}

.flex-block-3 {
  justify-content: space-between;
  align-items: center;
}

.div-block-13 {
  width: 75%;
  height: 120px;
  padding: 5px;
}

.div-block-14 {
  border: .4px dashed var(--dark-grey);
  background-color: var(--purple-lighter);
  cursor: pointer;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block-14:hover {
  border-width: .9px;
  border-color: var(--primary);
  background-color: var(--purple-lighter);
}

.image-9 {
  opacity: .75;
  width: 34px;
}

.flex-block-4 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 9px;
}

.text-block-7 {
  color: var(--primary);
  font-size: 12px;
  font-weight: 400;
}

.div-block-15 {
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 3px;
  left: 0%;
  right: 0%;
}

.upload-action {
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.upload-action:hover {
  opacity: .7;
  color: #2467eb;
}

.upload-action.cancel-action {
  color: rgba(0, 0, 0, .56);
}

.div-block-16 {
  border: .6px solid var(--dark-grey);
  background-color: var(--white);
  border-radius: 15px;
  width: 85%;
  padding: 10px;
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.image-10 {
  opacity: .5;
  align-self: center;
  width: 19px;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-block-5 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-right: 6px;
}

.image-11 {
  opacity: .7;
  width: 15px;
}

.flex-block-6 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  align-items: center;
}

.flex-block-7 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: center;
  align-items: center;
}

.course-content-generator-action-btn {
  opacity: .7;
  background-color: rgba(0, 0, 0, 0);
  width: 27px;
  padding: 6px;
}

.course-content-generator-action-btn:hover {
  filter: invert();
  background-color: rgba(0, 0, 0, 0);
}

.course-creator-action-btn {
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
  display: flex;
}

.course-creator-action-btn:hover {
  background-color: var(--primary);
}

.flex-block-8 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
}

.course-content-generator-action-btn-container {
  cursor: pointer;
  border-radius: 4px;
}

.course-content-generator-action-btn-container:hover {
  background-color: var(--primary);
}

.text-block-8 {
  font-size: 13px;
}

.div-block-17 {
  border: .5px solid var(--dark-grey);
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding-left: 10px;
  padding-right: 8px;
  display: flex;
}

.heading-2 {
  opacity: .7;
  margin-top: 0;
  margin-bottom: 0;
}

.image-12 {
  opacity: .56;
}

.image-13 {
  opacity: .7;
  align-items: center;
  width: 19px;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.user-input-field-block {
  height: 50px;
  position: relative;
}

.guided-question-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 40px;
  display: flex;
}

.quiz-answer-btn-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  cursor: pointer;
  background-color: #2467eb;
  background-image: linear-gradient(234deg, rgba(255, 255, 255, .38) 45%, #2467eb);
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 80px;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
}

.quiz-answer-btn-2:hover {
  background-image: none;
}

.quiz-answer-icon-container {
  align-items: center;
  width: 20px;
  display: flex;
}

.image-14 {
  filter: invert() brightness();
  width: 15px;
}

.quiz-answer-text-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.quiz-answer-btn-3 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  cursor: pointer;
  background-color: #2467eb;
  background-image: linear-gradient(234deg, rgba(255, 255, 255, .38) 45%, #2467eb);
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 80px;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
}

.quiz-answer-btn-3:hover {
  background-image: none;
}

.quiz-answer-btn-3.cancel-btn {
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #a7a7a7;
}

.quiz-answer-btn-3.cancel-btn:hover {
  background-color: rgba(201, 216, 248, .38);
}

.image-15 {
  filter: invert() brightness();
  width: 15px;
}

.image-15.cancel-icon {
  filter: none;
}

.course-header {
  justify-content: space-between;
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
}

.course-header-left {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.text-block-9 {
  color: var(--white);
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(88deg, rgba(36, 103, 235, .93) 10%, rgba(36, 103, 235, .6) 94%);
  border-radius: 20px;
  flex: 1;
  align-self: center;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 29px;
  font-size: 12px;
  position: static;
}

.course-header-right {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  align-items: center;
  height: 100%;
}

.course-header-btn {
  color: var(--white);
  cursor: pointer;
  background-image: linear-gradient(101deg, #2467eb 24%, rgba(36, 103, 235, .63) 58%);
  border-radius: 3px;
  align-items: center;
  height: 35px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.course-header-btn:hover {
  background-color: var(--primary);
  background-image: none;
}

.course-header-btn.without-bg {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-image: none;
}

.course-header-btn.without-bg:hover {
  color: var(--white);
}

.text-block-10 {
  font-size: 13px;
  font-weight: 600;
}

.course-header-right-mobile {
  display: none;
}

.course-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px 40px 40px;
  display: flex;
}

.course-main-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: .7px solid var(--dark-grey);
  border-radius: 3px;
  flex-direction: column;
  width: 100%;
  padding: 10px 10px 16px 15px;
  display: flex;
}

.single-course-header {
  justify-content: space-between;
  align-items: center;
  height: 28px;
}

.single-course-left {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  align-items: center;
  height: 100%;
}

.single-course-left.subsection-left {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.single-course-right {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.section-reducer-icon {
  opacity: .45;
  filter: grayscale();
  cursor: pointer;
  width: 11px;
}

.section-reducer-icon:hover {
  opacity: 1;
  filter: none;
}

.section-reducer-icon.subsection-reducer-icon {
  width: 13px;
}

.text-block-11 {
  font-size: 17px;
  font-weight: 600;
}

.text-block-11.sub-section {
  font-size: 14px;
}

.flex-block-10 {
  height: 100%;
}

.course-time {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-18 {
  opacity: .6;
  width: 15px;
}

.text-block-12 {
  font-weight: 600;
}

.course-action-btn {
  cursor: pointer;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.course-action-btn:hover {
  background-color: var(--primary);
}

.course-action-btn.move-btn:hover {
  background-color: rgba(0, 0, 0, 0);
}

.course-action-btn-img {
  opacity: .7;
  width: 30px;
  padding: 6px 8px;
}

.course-action-btn-img:hover {
  opacity: .85;
  filter: invert();
}

.course-action-btn-img.move-btn-img {
  opacity: .4;
}

.course-action-btn-img.move-btn-img:hover {
  filter: none;
}

.text-block-13 {
  color: var(--black);
}

.single-course-status-container {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  margin-top: -7px;
  padding-left: 18px;
  padding-right: 0;
}

.image-19 {
  opacity: .6;
  width: 15px;
}

.text-block-14 {
  color: #797272;
  font-size: 12px;
  font-weight: 600;
}

.status-unscheduled {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}

.text-block-15 {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.text-block-16 {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  font-size: 12px;
  display: flex;
}

.status-section-highlight {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.div-block-20 {
  justify-content: center;
  align-items: center;
  width: 18px;
  display: flex;
}

.single-subsection-block {
  border-style: solid;
  border-width: .5px .5px .5px 4px;
  border-color: var(--dark-grey) var(--dark-grey) var(--dark-grey) rgba(167, 167, 167, .71);
  padding: 7px 0 14px 13px;
}

.heading-3 {
  align-self: center;
  font-weight: 700;
}

.div-block-22 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.top-section-course {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.course-new-unit-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: .5px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-left: 0;
  margin-right: 0;
}

.course-new-unit-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.course-new-unit-icon {
  width: 15px;
}

.course-new-unit-icon.course-new-unit-icon-white {
  display: none;
}

.text-block-17 {
  font-size: 13px;
  font-weight: 600;
}

.image-20 {
  display: none;
}

.div-block-23 {
  padding-left: 18px;
  padding-right: 10px;
}

.div-block-24 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.course-popover-block {
  background-color: rgba(0, 0, 0, 0);
  align-self: flex-start;
  width: 40%;
  height: 100%;
  position: static;
  top: 80px;
  left: auto;
  right: 0%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.div-block-26 {
  width: 60%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.course-popover-container {
  background-color: var(--white);
  flex-direction: column;
  height: 100%;
  display: flex;
}

.flex-block-11 {
  background-color: #ececec;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  padding-right: 5px;
}

.flex-block-12 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  height: 100%;
  font-size: 12px;
}

.popover-close-btn-container {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.image-21 {
  opacity: .7;
  filter: grayscale();
  width: 29px;
}

.text-block-18 {
  font-weight: 700;
}

.image-22 {
  opacity: .6;
  filter: grayscale();
  width: 11px;
}

.popover-my-upload-btn {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  cursor: pointer;
  border: .5px solid #000;
  border-radius: 3px;
  align-items: center;
  padding: 2px 5px;
  font-size: 11px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.popover-my-upload-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
}

.div-block-27 {
  flex-direction: column;
  height: auto;
  padding: 20px;
  display: flex;
}

.image-23 {
  border-radius: 20px;
}

.video-caption-container {
  background-image: url('../images/How-to-Add-Captions-Subtitles-to-LinkedIn-Learning-Lynda-Videos.png');
  background-position: 0 0;
  background-size: contain;
  border: 1px #000;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  height: 250px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.popover-play-btn {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .43);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.popover-play-btn:hover {
  background-color: rgba(0, 0, 0, .62);
}

.image-24 {
  width: 25px;
}

.div-block-28, .div-block-29, .div-block-30, .div-block-31 {
  margin-top: 0;
}

.div-block-32 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: 0;
}

.heading-4 {
  margin-top: 4px;
  margin-bottom: 0;
}

.paragraph {
  margin-top: 0;
  margin-bottom: 0;
}

.default-suggestion-prompts-block {
  opacity: .8;
  color: var(--primary);
  cursor: pointer;
  border-radius: 4px;
  padding: 3px 1px;
  font-size: 15px;
}

.default-suggestion-prompts-block:hover {
  background-color: var(--secondary-bg);
  opacity: 1;
}

.default-suggestion-prompt {
  color: #004ce0;
  border-radius: 3px;
  padding: 0;
}

.footer-disclaimer {
  opacity: .7;
  color: var(--black);
  font-size: 12px;
  display: none;
}

.footer-disclaimer.whiten-in-dark-mode {
  text-align: center;
  width: 100%;
}

.modal {
  z-index: 99999;
  object-fit: fill;
  background-color: rgba(0, 0, 0, .75);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal.history-modal {
  display: none;
}

.modal.prompt-gallery-modal {
  padding: 20px;
  display: none;
}

.modal.prompt-gallery-modal.featured-mentors-modals {
  display: flex;
}

.modal.datasets-modal {
  padding: 20px;
}

.modal.manage-account-modal, .modal.integration-modal, .modal.create-secret-key-modal, .modal.prompt-modal, .modal.rename-history-modal, .modal.pin-history-modal, .modal.delete-history-modal, .modal.add-new-prompt-modal, .modal.llm-modal {
  display: none;
}

.modal.llm-info-modal {
  z-index: 999999;
  display: none;
}

.modal.llm-prompt-design-modal {
  display: none;
}

.modal.featured-mentors-modals {
  padding: 20px;
  display: none;
}

.modal.prompt-gallery-element-view-modal, .modal.users-settings-modal, .modal.users-settings-invite-modal, .modal.llm-set-api-key-modal, .modal.dataset-resource-modal, .modal.dataset-url-resource-modal {
  display: none;
}

.modal.mentor-list-modal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.modal.edit-mentor-modal, .modal.dataset-tabled-list-modal, .modal.mentor-creation-modal, .modal.users-settings-invited-users-list-modal, .modal.embed-mentor-modal {
  display: none;
}

.modal.ai-audio-chat-modal.lighter-dark-bg {
  background-color: rgba(0, 0, 0, 0);
  display: none;
}

.modal.dataset-youtube-resource-modal {
  display: none;
}

.modal-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  border-radius: 10px;
  width: 90%;
  max-width: 750px;
  max-height: 90%;
  padding: 0 0 30px;
  overflow: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .85);
}

.modal-container.full-modal-container {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  overflow: auto;
}

.modal-container.full-modal-container.not-full-height {
  height: auto;
}

.modal-container.export-modal-container {
  max-width: 500px;
  padding-bottom: 20px;
}

.modal-container.help-modal-container {
  padding-bottom: 0;
}

.modal-container.help-modal-container.help-container {
  max-width: 750px;
  display: flex;
}

.modal-container.billing-overview-modal-container {
  max-width: 700px;
}

.modal-container.payment-method-modal-container, .modal-container.billing-history-modal-container, .modal-container.usage-limit-modal-container {
  max-width: 500px;
}

.modal-container.integration-modal-container {
  max-width: 900px;
  padding-bottom: 10px;
}

.modal-container.integration-modal-container.add-new-prompt-modal-container {
  padding-bottom: 25px;
}

.modal-container.create-secret-key-modal-container {
  max-width: 500px;
  padding-bottom: 10px;
}

.modal-container.create-secret-key-modal-container.dataset-url-resource-modal-container {
  max-width: 400px;
}

.modal-container.prompt-gallery-container {
  width: 98%;
  max-width: 100%;
  max-height: 95%;
}

.modal-container.prompt-gallery-container.featured-mentor-container {
  width: auto;
  max-height: 95%;
}

.modal-container.prompt-gallery-container.edit-mentor-modal-container {
  max-width: 800px;
}

.modal-container.users-settings-modal-container {
  max-width: 1030px;
}

.modal-container.mentor-list-modal-container {
  max-width: 860px;
}

.modal-container.users-settings-invited-users-list-modal-container {
  max-width: 400px;
}

.modal-container.embed-mentor-modal-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  max-width: 575px;
}

.modal-container.ai-audio-chat-modal-container {
  background-image: linear-gradient(135deg, rgba(36, 103, 235, .98), rgba(36, 103, 235, .56));
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 500px;
  max-height: 560px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.modal-container.file-upload-processing-modal-container {
  max-width: 400px;
  padding-bottom: 0;
}

.modal-header {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: .5px solid var(--dark-grey);
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.modal-header.add-prompt-modal-header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  padding-left: 40px;
}

.modal-header.help-modal-header {
  padding-left: 20px;
}

.modal-header.dataset-modal-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.modal-header.featured-mentor-modal-header, .modal-header.space-between {
  justify-content: space-between;
}

.modal-header-title {
  color: #757575;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 600;
  display: block;
}

.modal-header-title.hidden-element {
  display: none;
}

.modal-header-title.prompt-gallery-element-view-modal-header-title {
  line-height: 21px;
}

.default-btn {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(100deg, rgba(36, 103, 235, .94) 20%, rgba(36, 103, 235, .57) 78%);
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.default-btn:hover {
  background-color: var(--primary);
  background-image: none;
}

.default-btn.form-submit-btn {
  text-align: center;
  border-radius: 4px;
  max-width: 70px;
}

.default-btn.form-submit-btn.form-cancel-btn {
  background-image: linear-gradient(to right, var(--dark-grey), rgba(167, 167, 167, .57) 50%);
  color: var(--black);
}

.default-btn.form-submit-btn.form-cancel-btn:hover {
  background-color: var(--dark-grey);
  background-image: none;
}

.default-btn.form-submit-btn.history-modal-submit-btn {
  max-width: 100px;
}

.default-btn.form-submit-btn.invite-user-submit-btn {
  max-width: none;
  padding-top: 6px;
  padding-bottom: 6px;
}

.default-btn.upgrade-account-btn {
  background-image: linear-gradient(rgba(167, 167, 167, .9) 34%, rgba(167, 167, 167, .69) 78%);
}

.default-btn.upgrade-account-btn:hover {
  background-color: var(--dark-grey);
}

.default-btn.prompt-add-btn {
  display: none;
}

.default-btn.auth-submit-btn {
  text-align: center;
  border-radius: 3px;
  padding: 16px 0;
  font-size: 15px;
}

.default-btn.auth-submit-btn.w--current {
  display: none;
}

.modal-close-wrapper {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 15px;
  bottom: auto;
  left: auto;
  right: 5px;
}

.modal-body {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.modal-body.help-modal-body {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  padding-left: 0;
  padding-right: 0;
}

.modal-body.export-chat-modal-body {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.modal-body.billing-overview-modal-body {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.modal-body.create-secret-key-modal-body.prompt-gallery-element-view-modal-body {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  padding-bottom: 10px;
}

.modal-body.user-settings-modal-body {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.modal-body.dataset-resource-modal-body {
  padding-bottom: 10px;
}

.modal-body.ai-audio-chat-modal-body {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.modal-body.file-upload-processing-modal-body {
  align-items: center;
  height: 200px;
  padding-bottom: 20px;
}

.history-element-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: .5px solid var(--black);
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.history-element-container.last-history-element-container {
  border-bottom-style: none;
  display: flex;
}

.history-block {
  cursor: pointer;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.history-block:hover {
  background-color: var(--secondary-bg);
}

.history-timeline {
  opacity: .75;
  color: var(--black);
  font-size: 12px;
  display: block;
}

.history-element-title {
  color: var(--black);
}

.history-time {
  opacity: .5;
  color: var(--black);
  display: block;
}

.history-right-side {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  height: 100%;
  display: flex;
}

.history-action-btn {
  cursor: pointer;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.history-action-btn:hover {
  background-color: var(--grey-bg);
}

.history-action-img {
  opacity: .6;
  width: 11px;
}

.history-action-btn-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
  display: none;
}

.prompt-description {
  color: var(--black);
  max-width: 500px;
  font-size: 13px;
}

.prompt-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr);
  grid-auto-columns: 240fr;
  width: 100%;
  display: grid;
}

.prompt-container.dataset-prompt-container {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.prompt-el-title {
  margin-top: 0;
  margin-bottom: 0;
}

.prompt-element {
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .37);
}

.prompt-el-header {
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  margin-bottom: 0;
  padding: 15px 20px 10px;
  display: flex;
}

.prompt-el-description {
  opacity: .7;
  color: var(--black);
  text-align: left;
  width: 100%;
  font-size: 13px;
}

.prompt-el-inner {
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  padding: 5px 20px 10px;
  display: flex;
}

.prompt-el-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: .8px solid var(--dark-grey);
  cursor: pointer;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
}

.prompt-el-footer:hover {
  background-color: var(--secondary-bg);
}

.prompt-el-footer.prompt-el-footer-no-hov {
  cursor: auto;
}

.prompt-el-footer.prompt-el-footer-no-hov:hover {
  background-color: rgba(0, 0, 0, 0);
}

.prompt-el-footer.prompt-el-footer-no-hov.prompt-el-footer-primary-bg {
  background-image: linear-gradient(135deg, #2467eb, rgba(36, 103, 235, .66) 59%);
}

.prompt-el-action-text {
  color: var(--primary);
  font-weight: 600;
}

.prompt-el-action-text.prompt-el-action-text-white {
  color: var(--white);
}

.flex-block-13 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.help-element {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  align-items: center;
  width: 100%;
  padding: 8px 20px;
}

.help-element:hover {
  background-color: var(--grey-bg);
}

.help-element.help-element-report-problem {
  padding-top: 10px;
  padding-bottom: 10px;
}

.help-el-icon-container {
  background-color: var(--secondary-bg);
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.help-el-icon-container.help-el-report-problem {
  background-color: var(--grey-bg);
}

.help-el-icon-img {
  width: 17px;
}

.help-el-description {
  color: var(--black);
}

.help-el-description.help-report-problem {
  color: var(--primary);
  font-weight: 600;
}

.help-search-input {
  background-color: rgba(237, 237, 237, .83);
  border: 1px #000;
  border-radius: 40px;
  align-self: center;
  width: 100%;
  height: 100%;
  padding-left: 50px;
}

.help-search-form {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.help-search-input-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.image-25 {
  opacity: .7;
  width: 20px;
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 21px;
  right: auto;
}

.help-seperator-line {
  border: 3px solid var(--grey-bg);
  width: 100%;
  margin-top: 7px;
}

.chat-export-container {
  border-radius: 10px;
  width: 100%;
  padding: 0;
  overflow: visible;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.chat-export-header {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  padding: 20px;
}

.chat-export-header.chat-export-body {
  background-color: var(--grey-bg);
}

.chat-export-header.chat-export-body.share-export-body {
  background-color: rgba(0, 0, 0, 0);
}

.chat-export-header.share-export-header {
  padding-left: 0;
  padding-right: 0;
}

.div-block-33 {
  width: 100%;
}

.chat-export-icon-container {
  background-image: linear-gradient(243deg, rgba(36, 103, 235, .42) 15%, rgba(36, 103, 235, .92) 57%);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 30px;
  display: flex;
}

.chat-export-icon-container.chat-export-more-icon-container {
  width: 36px;
}

.chat-export-icon-container.chat-export-more-icon-container:hover {
  background-color: var(--primary);
  background-image: none;
}

.image-26 {
  width: 20px;
  height: 20px;
}

.image-26.export-chat-more-img {
  filter: invert();
}

.chat-export-text-block {
  opacity: .8;
  color: var(--black);
  font-size: 15px;
}

.chat-export-header-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: flex-start;
  display: flex;
}

.chat-export-header-block.share-export-header-block {
  width: 100%;
}

.paragraph-2 {
  opacity: .8;
  color: var(--black);
  align-self: flex-start;
  width: 100%;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 23px;
}

.paragraph-2.share-paragraph {
  font-size: 16px;
  line-height: 30px;
}

.chat-export-container-top-block {
  max-height: 300px;
  overflow: auto;
}

.chat-export-container-top-block.share-chat-export-container {
  max-height: none;
}

.chat-export-container-bottom-block {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  position: relative;
}

.chat-export-details-title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.chat-export-details-label {
  opacity: .7;
  color: var(--black);
}

.chat-export-details-label.hidden {
  display: none;
}

.chat-export-details-block {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
}

.flex-block-16 {
  width: 30px;
  height: 30px;
}

.button-with-icon {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--white);
  cursor: pointer;
  background-image: linear-gradient(96deg, #2467eb 23%, rgba(36, 103, 235, .41));
  border-radius: 5px;
  align-items: center;
  padding: 10px 15px;
  display: flex;
}

.button-with-icon:hover {
  background-color: var(--primary);
  background-image: none;
}

.button-with-icon.users-settings-invite-btn {
  border-radius: 3px;
  padding: 6px 12px;
}

.button-with-icon.users-settings-invite-btn.hidden {
  display: none;
}

.button-icon {
  filter: invert();
  width: 16px;
}

.button-icon.no-invert {
  filter: none;
}

.button-icon.hidden {
  display: none;
}

.flex-block-17 {
  justify-content: space-between;
  width: 100%;
}

.user-menu-toggler {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  height: 100%;
  padding: 0;
  display: flex;
}

.user-menu-toggler-container {
  height: 100%;
}

.user-menu-dropdown-container {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  min-width: 100%;
  left: -130px;
}

.user-menu-dropdown-block {
  border: .6px solid var(--dark-grey);
  background-color: var(--white);
  border-radius: 7px;
  width: 200px;
  margin-left: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode {
  position: fixed;
}

.user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.history-element-dropdown-block {
  width: 150px;
}

.user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown.ai-expert-menu-dropdown-block {
  border-style: none;
  flex-direction: row;
  width: 100%;
  max-width: 750px;
  position: fixed;
}

.user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-tenant-dropdown-block {
  width: 120px;
}

.user-menu-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--black);
  width: 100%;
  padding: 15px 5px 15px 20px;
  text-decoration: none;
  display: flex;
}

.user-menu-link:hover {
  background-color: var(--grey-bg);
}

.user-menu-link.manage-account-menu.greyish-bg-in-darkmode.history-element-dropdown-menu-link, .user-menu-link.billing-overview-menu.greyish-bg-in-darkmode.history-element-dropdown-menu-link {
  padding-top: 7px;
  padding-bottom: 7px;
}

.user-menu-link.greyish-bg-in-darkmode.theme-switcher-container {
  cursor: pointer;
  border-style: none;
  border-radius: 0;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  position: static;
}

.user-menu-link.greyish-bg-in-darkmode.theme-switcher-container.user-menu-light-mode, .user-menu-link.greyish-bg-in-darkmode.theme-switcher-container.user-menu-dark-mode {
  display: none;
}

.user-menu-link.greyish-bg-in-darkmode.history-element-dropdown-menu-link {
  padding-top: 10px;
  padding-bottom: 10px;
}

.user-menu-link.greyish-bg-in-darkmode.history-element-dropdown-menu-link.last-history-element-dropdown-menu-link {
  border-top: .6px solid var(--dark-grey);
}

.user-menu-link.greyish-bg-in-darkmode.user-menu-datasets-link, .user-menu-link.greyish-bg-in-darkmode.display-only-on-mobile {
  display: none;
}

.user-menu-link.no-hover {
  cursor: default;
}

.user-menu-link.no-hover:hover {
  background-color: rgba(0, 0, 0, 0);
}

.user-menu-link.no-hover.p-relative {
  position: relative;
}

.user-menu-icon {
  width: 20px;
}

.user-menu-icon.small-user-menu-icon {
  width: 15px;
}

.user-menu-icon.user-menu-light-icon {
  display: block;
}

.user-menu-icon.smaller {
  width: 16px;
}

.user-menu-icon.smaller.float-right {
  position: absolute;
  top: 18px;
  bottom: 0%;
  left: auto;
  right: 27px;
}

.user-menu-icon.smaller.float-right.cursor-pointer {
  opacity: .5;
  cursor: pointer;
}

.user-menu-icon.smaller.float-right.cursor-pointer:hover {
  opacity: 1;
}

.user-menu-icon.less-visible {
  opacity: .5;
}

.user-menu-label.user-menu-light-label {
  display: block;
}

.user-menu-label.less-visible {
  opacity: .5;
}

.input-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  width: 100%;
}

.input-block.invite-user-secret-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.input-block.invite-user-secret-block.edit-mentor-settings-form-input-block.horizontal-flex {
  flex-direction: row;
  align-items: center;
}

.input-block.invite-user-secret-block.edit-mentor-settings-form-input-block.horizontal-flex.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.input-block.hidden {
  display: none;
}

.form-input-label {
  opacity: .8;
  color: var(--black);
  margin-bottom: 0;
  font-size: 13px;
}

.form-input {
  border: .5px solid var(--dark-grey);
  border-radius: 4px;
  height: 28px;
  margin-bottom: 0;
  font-size: 13px;
}

.form-input.form-input-disabled {
  background-color: var(--grey-bg);
}

.form-input.usage-limit-form-input {
  width: auto;
}

.form-input.secret-key-form-input {
  height: 32px;
}

.form-input.secret-key-form-input.rename-chat-form-input {
  height: 50px;
  font-size: 16px;
}

.form-input.secret-key-form-input.invalid {
  border-width: .7px;
  border-color: red;
}

.form-input-desc {
  opacity: .8;
  color: var(--black);
  font-size: 12px;
  font-weight: 300;
}

.form-input-desc.usage-limit-form-input-desc {
  opacity: 1;
  color: #333;
  font-weight: 400;
}

.form-input-desc.secret-key-form-input-desc {
  opacity: .47;
  font-size: 14px;
  font-weight: 600;
}

.manage-account-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.manage-account-form-block {
  width: 100%;
  margin-bottom: 0;
}

.heading-6 {
  margin-top: 0;
  margin-bottom: 0;
}

.upgrade-account-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.billing-overview-submenu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  flex-wrap: nowrap;
  align-items: center;
  height: 55px;
}

.billing-overview-submenu-icon-container {
  background-image: linear-gradient(105deg, var(--primary), rgba(36, 103, 235, .43));
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 100%;
  display: flex;
}

.billing-overview-submenu-icon {
  width: 21px;
}

.billing-overview-submenu-desc {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.text-block-20 {
  opacity: .7;
  color: var(--black);
  font-size: 13px;
}

.text-block-21, .text-block-22, .text-block-23, .text-block-24 {
  margin-top: 0;
}

.billing-overview-submenu-desc-label {
  margin-top: 0;
  font-size: 13px;
}

.billing-overview-submenu-desc-title {
  margin-top: 0;
  margin-bottom: 0;
}

.billing-overview-submenu-block {
  grid-column-gap: 50px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.payment-method-block {
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr);
  grid-template-areas: "Area";
  width: 100%;
}

.payment-method-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: .6px solid var(--dark-grey);
  color: var(--black);
  border-radius: 4px;
  padding: 10px 10px 10px 15px;
  font-size: 13px;
}

.image-27 {
  height: 30px;
}

.card-number-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  width: 100%;
  height: 30px;
}

.card-text-info, .card-number-text {
  opacity: .8;
  font-size: 14px;
}

.table-container {
  width: 100%;
  overflow: auto;
}

.table-header {
  padding-top: 0;
  padding-bottom: 10px;
}

.table-header.api-key-table-header {
  padding-top: 10px;
}

.table-header.llm-info-table-header {
  background-color: #ededed;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.table-header.invited-users-table-header {
  width: 100%;
}

.invoice-block {
  width: 105px;
  max-width: 105px;
}

.invoice-block.training-data-block {
  width: 200px;
  max-width: 200px;
}

.status-block {
  width: 61px;
  max-width: 61px;
}

.amount-block {
  width: 75px;
  max-width: 75px;
}

.amount-block.content-length-block {
  width: 120px;
  max-width: 120px;
}

.created-at-block {
  width: 150px;
  max-width: 150px;
}

.created-at-block.token-block {
  width: 60px;
}

.created-at-block.lr-block {
  width: 80px;
}

.created-at-block.gqa-block {
  width: 60px;
}

.action-block {
  width: 40px;
  max-width: 40px;
}

.table-title {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}

.table-title.text-center {
  text-align: center;
  width: 100%;
}

.table-body-row {
  border-top: .4px solid var(--dark-grey);
  color: var(--black);
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
}

.table-body-row:hover {
  background-color: rgba(36, 103, 235, .08);
}

.table-body-row.greyish-bg-in-darkmode {
  align-items: center;
}

.table-body-row.greyish-bg-in-darkmode.invited-users-table-row {
  width: 100%;
}

.table-text.table-text-italic {
  font-style: italic;
}

.link {
  color: var(--primary);
  text-decoration: none;
}

.div-block-34 {
  display: flex;
}

.status-element {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, var(--primary), rgba(36, 103, 235, .53));
  color: var(--white);
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
}

.status-element:hover {
  background-color: var(--primary);
  background-image: none;
}

.status-element.status-element-unpaid {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(72deg, #e64735, rgba(230, 71, 53, .61) 78%);
}

.status-element.status-element-unpaid:hover {
  background-color: #e64735;
  background-image: none;
}

.text-block-25 {
  font-size: 13px;
}

.usage-limit-wysiwyg-block {
  font-size: 12px;
}

.usage-limit-wysiwyg-block h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.api-name-block {
  width: 165px;
  max-width: 165px;
}

.api-key-block, .api-created-block, .api-last-used-block {
  width: 168px;
  max-width: 168px;
}

.api-action-block {
  width: 100px;
  max-width: 100px;
}

.api-action-icon {
  opacity: .75;
  width: 12px;
}

.api-action-icon-container {
  cursor: pointer;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  display: flex;
}

.api-action-icon-container:hover {
  background-color: var(--grey-bg);
}

.api-action-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
}

.heading-7 {
  margin-top: 0;
  margin-bottom: 0;
}

.heading-7.less-bold {
  margin-top: 15px;
  font-weight: 600;
}

.select-field {
  background-color: var(--white);
  border: .3px solid #000;
  border-radius: 4px;
  height: 30px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.form-block-2 {
  margin-bottom: 0;
}

.prompt-edit-btn {
  color: var(--black);
  align-self: flex-end;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
}

.prompt-edit-btn:hover {
  opacity: .7;
}

.add-suggested-prompt-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: .4px solid var(--dark-grey);
  background-color: var(--grey-bg);
  cursor: pointer;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
}

.flex-block-18 {
  background-image: linear-gradient(135deg, var(--primary) 7%, rgba(36, 103, 235, .51) 65%);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}

.add-new-prompt-label {
  opacity: .8;
  margin-top: 0;
  margin-bottom: 0;
}

.add-new-prompt-label.black-color-in-dark-mode {
  font-weight: 600;
}

.image-28 {
  filter: invert();
  width: 25px;
}

.tooltip {
  z-index: 2147483647;
  color: var(--white);
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
  border: 1px solid #000;
  border-radius: 4px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 350px;
  max-width: 390px;
  height: 30px;
  padding: 0 10px;
  font-size: 13px;
  display: flex;
  position: absolute;
  top: -34px;
  bottom: auto;
  left: auto;
  right: auto;
}

.tooltip.tooltip-user-file-upload {
  display: none;
  right: -120px;
}

.tooltip.tooltip-microphone {
  width: 150px;
  max-width: 150px;
  display: none;
}

.tooltip.tooltip-new-chat {
  max-width: 85px;
  display: none;
}

.tooltip.tooltip-rating-thumbs {
  width: 115px;
  max-width: 115px;
  display: none;
  top: 40px;
  left: -20px;
}

.tooltip.tooltip-trial {
  flex: none;
  height: 50px;
  display: none;
  top: 30px;
  left: -160px;
}

.tooltip.anonymous-mode {
  width: 180px;
  height: 25px;
  font-size: 12px;
  display: none;
}

.tooltip.anonymous-mode.deactivate {
  width: 190px;
}

.prompt-el-footer-icon {
  width: 20px;
}

.prompt-el-footer-icon.whiteing-img {
  filter: invert();
}

.text-block-26 {
  opacity: .75;
  color: var(--black);
  font-size: 11px;
}

.secret-key-form-block {
  width: 100%;
}

.secret-key-form-block.edit-mentor-settings-form-block {
  margin-bottom: 0;
}

.flex-block-19 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}

.flex-block-20 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.welcome-page-container {
  width: 100%;
  height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
}

.image-29 {
  width: 40px;
}

.auth-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
}

.welcome-page-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.flex-block-23 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
}

.body-2 {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  overflow: hidden;
}

.text-block-27 {
  opacity: .7;
}

.welcome-btn-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.text-block-28 {
  font-size: 15px;
}

.div-block-35 {
  border: .5px solid #000;
  width: 0;
  height: 15px;
}

.link-block {
  color: var(--black);
  font-size: 12px;
  text-decoration: none;
}

.auth-footer-links {
  opacity: .6;
}

.auth-footer-links:hover {
  opacity: .85;
}

.auth-page-container {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.auth-page-block {
  justify-content: space-between;
  align-items: center;
  width: 320px;
  height: 100%;
  padding-top: 30px;
  overflow: auto;
}

.auth-page-block.gap-reduced {
  justify-content: space-between;
  height: 100%;
  margin-top: 0;
  padding-top: 30px;
}

.auth-logo-img {
  width: 40px;
}

.auth-form-block {
  width: 100%;
  margin-bottom: 0;
}

.auth-page-main-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  width: 100%;
}

.auth-page-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.auth-page-title.smaller {
  font-size: 28px;
}

.auth-input {
  border-radius: 4px;
  height: 55px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 16px;
}

.auth-input.invalid {
  border: 1px solid var(--light-red);
}

.auth-input.password-field {
  padding-right: 40px;
}

.auth-form-submit-btn {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, var(--primary), rgba(36, 103, 235, .72) 46%);
  color: var(--white);
  border-radius: 4px;
  width: 100%;
  padding: 16px 0;
  font-size: 15px;
}

.auth-form-submit-btn:hover {
  background-color: var(--primary);
  background-image: none;
}

.body-3 {
  color: var(--black);
  height: 100%;
  font-family: Open Sans, sans-serif;
}

.auth-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.auth-redirect-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  width: 100%;
  font-size: 13px;
}

.auth-link-redirect {
  opacity: .75;
}

.auth-link-redirect:hover {
  opacity: 1;
}

.auth-link-redirect.mt-small {
  margin-top: 20px;
}

.text-block-29 {
  opacity: .75;
}

.auth-seperation-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.div-block-36 {
  border: .5px solid var(--dark-grey);
  width: 100%;
}

.div-block-37 {
  width: 100%;
}

.text-block-30 {
  opacity: .55;
  font-size: 12px;
}

.external-auth-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
}

.external-auth-btn {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: .8px solid var(--dark-grey);
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  padding: 15px 20px;
}

.external-auth-btn:hover {
  background-color: rgba(237, 237, 237, .64);
}

.image-31 {
  width: 20px;
}

.external-auth-label {
  opacity: .7;
}

.external-auth-container {
  color: var(--black);
  width: 100%;
}

.auth-title-desc {
  opacity: .7;
  text-align: center;
  font-size: 13px;
}

.theme-switcher-icon {
  width: 20px;
}

.theme-switcher-icon.light-mode {
  display: none;
}

.theme-switcher-container {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 43px;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: 25px;
  right: auto;
}

.theme-switcher-container:hover {
  background-color: var(--grey-bg);
}

.theme-switcher-container.greyish-bg-in-darkmode.whiten-border-in-dark-mode {
  display: flex;
}

.theme-switcher-container.greyish-bg-in-darkmode.whiten-border-in-dark-mode.hidden {
  display: none;
}

.switch-html-embed {
  cursor: pointer;
}

.switcher-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  cursor: auto;
  align-items: center;
  display: flex;
}

.switcher-container.switcher-mobile-container {
  display: none;
}

.switcher-container.add-new-prompt-switcher-container {
  margin-left: 0;
}

.switcher-container.move-left {
  margin-left: 105px;
}

.switcher-container.anonymous-switcher {
  width: 100%;
  padding-left: 10px;
}

.switch-label-txt {
  opacity: .8;
}

.switch-label-txt.whiten-in-dark-mode.prompt-markdown-label {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
}

.switch-label-txt.whiten-in-dark-mode.anonymous-label {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
}

.edit-user-prompt-container {
  opacity: .3;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
}

.edit-user-prompt-icon {
  width: 18px;
  height: 24px;
}

.templates-block {
  display: none;
}

.user-prompt-text-block {
  justify-content: flex-start;
  align-items: center;
  max-width: 740px;
  display: flex;
}

.citation-list-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.citation-element {
  background-color: var(--purple-lite);
  border-radius: 5px;
  padding: 10px 7px;
  font-size: 15px;
}

.citation-element:hover {
  text-decoration: underline;
}

.text-block-31 {
  font-size: 16px;
}

.stop-responding-btn {
  border: 1px solid var(--primary);
  border-radius: 7px;
  align-self: center;
  align-items: center;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  display: none;
}

.copy-retry-container {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-end;
  width: 100%;
}

.response-action-link {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  opacity: .8;
  color: var(--black);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 13px;
  display: flex;
}

.response-action-link:hover {
  opacity: 1;
}

.response-action-link.copy-action-btn.copied-action-btn {
  cursor: default;
  display: none;
}

.response-action-icon {
  width: 19px;
}

.response-action-label {
  font-size: 14px;
}

.prepend-actions-template {
  background-color: var(--white);
  margin-bottom: 20px;
}

.body-left-side-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 0;
  overflow: auto;
}

.new-chat-btn-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--cornflower-blue);
  opacity: .5;
  color: var(--black);
  cursor: pointer;
  border-radius: 25px;
  align-items: center;
  padding: 7px 15px;
}

.new-chat-btn-block:hover {
  background-color: var(--grey-bg);
  opacity: 1;
}

.new-chat-btn-block.all-whiten-in-dark-mode {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.image-32 {
  width: 20px;
}

.text-block-32 {
  font-weight: 400;
}

.history-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 100%;
}

.history-set-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 100%;
  margin-bottom: 15px;
  padding-right: 20px;
  position: static;
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 11px;
  font-weight: 600;
}

.history-element {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--black);
  cursor: pointer;
  border-radius: 15px;
  align-items: center;
  width: 100%;
  padding: 5px 5px 5px 10px;
  font-size: 13px;
  position: relative;
}

.history-element:hover {
  background-color: rgba(237, 237, 237, .54);
}

.history-element.greyish-bg-in-darkmode:hover {
  background-color: #f5f5f5;
}

.image-33 {
  opacity: .8;
  width: 19px;
}

.dropdown-list-2 {
  background-color: rgba(0, 0, 0, 0);
  top: auto;
  bottom: 30px;
  left: -6px;
  right: auto;
}

.copilot-suggestion-prompt-dropdown-block {
  z-index: 2147483647;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  border-radius: 8px;
  width: 250px;
  padding: 10px 15px;
  display: flex;
  position: static;
  top: auto;
  bottom: 31px;
  left: -4px;
  right: 0%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.mentor-footer-action-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  height: 25px;
  padding-left: 0;
  position: relative;
}

.mentor-footer-btn {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding-left: 4px;
  padding-right: 4px;
}

.mentor-footer-btn:hover {
  background-color: #ededed;
}

.mentor-footer-btn.prompt-selector-dropdown-toggle {
  position: relative;
}

.mentor-footer-btn.prompt-selector-dropdown-toggle:hover {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mentor-footer-btn.prompt-selector-dropdown-toggle.mentor-footer-action-btn-focused {
  background-color: rgba(0, 0, 0, 0);
  width: 23px;
  height: 23px;
  padding-left: 0;
  padding-right: 0;
}

.mentor-footer-btn.prompt-selector-dropdown-toggle.mentor-footer-action-btn-focused:hover {
  padding-left: 4px;
  padding-right: 4px;
}

.mentor-footer-btn.mentor-footer-action-btn-focused {
  background-color: #ededed;
}

.mentor-footer-btn.mentor-footer-action-btn-focused:hover {
  background-color: #dadada;
}

.mentor-footer-btn.mentor-footer-action-btn-focused.mentor-file-upload-btn {
  display: none;
}

.mentor-footer-action-icon {
  opacity: 1;
  width: 15px;
}

.copilot-suggestion-prompt-element {
  cursor: pointer;
  border: 1px solid #dde1e6;
  border-radius: 11px;
  padding: 2px 7px;
  font-size: 12px;
}

.copilot-suggestion-prompt-element:hover {
  background-color: var(--cornflower-blue);
}

.text-block-33 {
  font-size: 12px;
}

.mentor-suggestion-prompt-dropdown-toggle {
  padding: 0;
  display: flex;
}

.flex-block-24 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  width: 100%;
  margin-top: 5px;
}

.new-chat-block {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 49px;
  padding: 1px;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.new-chat-block:hover {
  background-color: var(--cornflower-blue);
}

.new-chat-block.mt-20 {
  margin-top: 20px;
}

.new-chat-block.whiten-border-in-dark-mode.all-whiten-in-dark-mode {
  display: none;
}

.image-34 {
  width: 16px;
}

.header-action-btn-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  height: 100%;
}

.header-action-btn-block.info-header-action-btn-block {
  margin-left: -10px;
}

.header-action-btn {
  opacity: .75;
  cursor: pointer;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
}

.header-action-btn:hover {
  background-color: var(--grey-bg);
}

.header-action-btn.all-whiten-in-dark-mode.greyish-bg-in-darkmode.ai-expert-header-action-btn {
  display: none;
}

.header-action-btn.all-whiten-in-dark-mode.greyish-bg-in-darkmode.submenu-with-children-dropdown-element {
  width: 100%;
}

.ai-expert-header-action-icon {
  width: 22px;
}

.header-settings-dropdown-container {
  background-color: rgba(0, 0, 0, 0);
  display: none;
  top: 60px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.header-settings-dropdown-container.settings-dropdown {
  left: -100px;
}

.header-settings-dropdown-container.ai-expert-dropdown-container {
  position: absolute;
  top: 50px;
  bottom: auto;
  left: -250px;
  right: auto;
}

.header-settings-dropdown.submenu-with-children-dropdown {
  width: 100%;
  display: none;
}

.header-help-dropdown-container {
  background-color: rgba(0, 0, 0, 0);
  display: none;
  top: 40px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.header-help-dropdown-container.help-dropdown {
  top: 60px;
  left: auto;
  right: 150px;
}

.flex-block-25 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 150px;
}

.text-block-35 {
  opacity: .7;
  font-size: 14px;
  display: block;
}

.text-block-35.footer-disclaimer {
  display: block;
}

.text-block-35.suggested-prompt-label {
  opacity: 1;
}

.history-icon-container {
  background-color: var(--grey-bg);
  border-radius: 7px;
  padding: 4px;
}

.flex-block-26 {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: none;
  position: absolute;
  top: 8px;
  bottom: 0%;
  left: auto;
  right: 10px;
}

.history-element-label {
  width: 100%;
  padding-right: 5px;
}

.image-36 {
  width: 12px;
}

.history-dropdown-toggle {
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  display: none;
  position: static;
}

.history-dropdown-toggle:hover {
  background-color: rgba(167, 167, 167, .3);
}

.image-37 {
  width: 15px;
}

.history-dropdown-container {
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0%;
  left: auto;
  right: 8px;
}

.history-dropdown {
  align-items: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 5px;
}

.dropdown-list-3 {
  background-color: rgba(0, 0, 0, 0);
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 20px;
  right: 0%;
}

.show-more-less-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--black);
  cursor: pointer;
  border-radius: 20px;
  align-items: center;
  width: 100%;
  padding: 7px 5px 7px 14px;
  font-size: 13px;
}

.show-more-less-block:hover {
  background-color: rgba(237, 237, 237, .54);
}

.show-more-less-block.show-less-btn, .show-more-less-block.show-less-btn.greyish-bg-in-darkmode {
  display: none;
}

.image-38 {
  width: 15px;
}

.hidden-history-element-block {
  display: none;
}

.image-39 {
  width: 25px;
  display: block;
}

.image-40 {
  width: 16px;
}

.suggestion-reload-block {
  border: 1px solid var(--primary);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  max-height: 30px;
  margin-bottom: 10px;
  padding: 5px 0;
}

.suggestion-reload-block:hover {
  background-color: var(--purple-lighter);
}

.bold-text-2 {
  color: var(--black);
  font-weight: 600;
}

.prompt-category-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.prompt-category-block.hidden {
  display: none;
}

.prompt-category-element {
  border: .6px solid var(--dark-grey);
  cursor: pointer;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 13px;
}

.prompt-category-element:hover {
  background-color: var(--primary);
  color: var(--white);
}

.prompt-category-element.active-category-element {
  color: var(--white);
  background-image: linear-gradient(135deg, #2467eb 12%, rgba(36, 103, 235, .64) 68%);
}

.prompt-category-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.prompt-category-container.featured-mentors-container {
  overflow: auto;
}

.prompt-category-container-title {
  margin-top: 0;
  margin-bottom: 0;
}

.prompt-gallery-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template: "Area"
  / 1fr 1fr 1fr;
  width: 100%;
}

.prompt-gallery-grid.hidden {
  display: none;
}

.prompt-gallery-grid.edit-mentor-system-prompt-grid {
  grid-template-columns: 1fr 1fr;
}

.prompt-grid-element {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  cursor: pointer;
  background-color: rgba(237, 237, 237, .57);
  border-radius: 6px;
  width: 100%;
  padding-top: 0;
  position: relative;
}

.prompt-grid-element:hover {
  background-color: #ededed;
}

.prompt-grid-element.add-prompt-grid-element {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.prompt-grid-header-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-left: 15px;
  padding-right: 10px;
}

.prompt-grid-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}

.prompt-grid-icon {
  width: 13px;
}

.prompt-grid-description {
  opacity: .7;
  font-size: 13px;
}

.prompt-grid-description-block {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding: 1px 10px 1px 15px;
  overflow: auto;
}

.prompt-grid-description-block.edit-mentor-system-prompt-grid-description-block {
  height: 41px;
}

.mentor-footer-btn-block {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  opacity: .65;
  cursor: pointer;
  background-color: #e6e6e6;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 2px 10px 2px 5px;
}

.mentor-footer-btn-block:hover {
  opacity: 1;
}

.flex-block-27 {
  justify-content: flex-end;
  width: 100%;
}

.flex-block-28 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
}

.image-41 {
  width: 25px;
}

.get-back-btn {
  cursor: pointer;
  border-radius: 45px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 0;
  position: absolute;
}

.get-back-btn:hover {
  background-color: rgba(237, 237, 237, .59);
}

.add-new-prompt-content {
  border: .6px solid var(--dark-grey);
  border-radius: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
}

.prompt-section-header-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-bottom: .6px solid var(--dark-grey);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 25px;
}

.heading-9 {
  margin-top: 0;
  margin-bottom: 0;
}

.image-42 {
  opacity: .65;
  width: 20px;
}

.prompt-section-header-icon-container {
  justify-content: center;
  align-items: center;
}

.prompt-section-content-block {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}

.prompt-textarea-input {
  border: 1px #000;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  min-height: 250px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.flex-block-32 {
  justify-content: flex-end;
  width: 100%;
}

.flex-block-33 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.prompt-select-category {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-bottom: 0;
}

.form-block-5 {
  margin-bottom: 0;
  display: flex;
}

.add-new-prompt-result-container {
  background-color: var(--purple-lite);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 100%;
  padding: 30px 25px;
}

.text-block-36 {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.add-new-prompt-input-title {
  color: var(--primary);
  text-align: center;
  border: 1px #000;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.form-block-6 {
  width: 90%;
  margin-bottom: 0;
}

.learn-more-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: .7px solid var(--dark-grey);
  width: 100%;
  margin-top: 10px;
  padding: 20px 20px 0;
}

.learn-more-block.is-hidden {
  display: none;
}

.heading-10 {
  margin-top: 0;
  margin-bottom: 0;
}

.ai-response-container-content {
  align-items: stretch;
}

.learn-more-link {
  color: var(--primary);
  background-color: #c9daff;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 600;
}

.learn-more-link:hover {
  color: var(--primary);
  background-color: #9abafd;
}

.learn-more-container {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-wrap: wrap;
  flex: 0 auto;
  align-items: center;
}

.text-block-37 {
  color: var(--dark-primary);
}

.text-block-37:hover {
  color: var(--primary);
}

.ai-expert-dropdown-toggle {
  padding: 10px 15px 10px 5px;
  font-weight: 600;
}

.ai-expert-element-block {
  cursor: pointer;
  background-color: rgba(249, 250, 251, .5);
  border: 1px solid rgba(207, 207, 207, .5);
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 25px 10px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.ai-expert-element-block:hover {
  background-color: #f7f7f7;
  background-image: none;
  box-shadow: 0 -1px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px rgba(0, 0, 0, .2);
}

.ai-expert-element-block.black-bg-dark-mode.greyish-bg-in-darkmode.selected-ai-expert-block {
  height: 100%;
  padding: 0;
  display: none;
}

.ai-expert-element-block.black-bg-dark-mode.greyish-bg-in-darkmode.selected-ai-expert-block:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
}

.ai-expert-element-block.black-bg-dark-mode.greyish-bg-in-darkmode.hidden {
  display: none;
}

.ai-expert-element-block.light-grey-bg-dark-mode.greyish-bg-in-darkmode.ai-expert-element-is-active {
  background-color: #f3f3f3;
}

.expert-profile-container {
  background-image: url('../images/1.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}

.expert-profile-container.math-teacher {
  background-image: url('../images/pexels-pixabay-220453.jpg');
}

.expert-profile-container.coding-instructor {
  background-image: url('../images/2.jpg');
}

.expert-profile-container.gen-ai-expert {
  background-image: url('../images/pexels-elii-2049409-1.jpg');
}

.expert-profile-container.humanities-professor {
  background-image: url('../images/4.jpg');
}

.expert-profile-container.cloud-computer {
  background-image: url('../images/5.jpg');
}

.ai-expert-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
}

.ai-expert-dropdown {
  margin-left: 100px;
  display: none;
}

.ai-expert-desc-block {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  align-items: center;
  position: relative;
}

.ai-expert-desc {
  font-weight: 400;
  text-decoration: none;
}

.llm-provider-select {
  border: .5px solid var(--dark-grey);
  background-color: #fff;
  border-radius: 4px;
  height: 28px;
  margin-bottom: 0;
  padding: 0 5px;
}

.ai-expert-choose-label {
  font-size: 15px;
  font-weight: 600;
}

.flex-block-34 {
  height: 100%;
  display: none;
}

.rate-limit-exceed-container {
  z-index: 2147483647;
  display: none;
  position: fixed;
  top: auto;
  bottom: 63px;
  left: 50px;
  right: auto;
}

.rate-limit-exceed-icon {
  width: 30px;
}

.rate-limit-exceed-header {
  margin-top: 0;
  margin-bottom: 0;
}

.rate-limit-exceed-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #fff;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.rate-limit-exceed-desc {
  font-size: 13px;
}

.platform-upgrade-btn {
  opacity: .65;
  color: var(--primary);
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
}

.platform-upgrade-btn:hover {
  opacity: 1;
}

.platform-upgrade-btn.platform-upgrade-later-btn {
  color: #6d6d6d;
}

.rate-limit-exceed-btn-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 2px;
}

.llm-prompt-element-btn-label {
  color: rgba(36, 103, 235, .71);
  text-align: center;
}

.llm-prompt-element-title {
  font-size: 17px;
}

.llm-prompt-element-desc-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.llm-prompt-element-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: .4px solid #a7a7a7;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}

.llm-prompt-element-top-header-tag {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.llm-prompt-element-desc-info {
  color: rgba(51, 51, 51, .6);
  font-size: 11px;
}

.llm-prompt-element-desc {
  color: rgba(51, 51, 51, .75);
  margin-bottom: 0;
  font-size: 12px;
}

.llm-grid-block {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 10px;
}

.llm-grid-block.edit-mentor-llm-grid-block {
  grid-template-columns: 1fr 1fr;
}

.llm-prompt-element-btn-link {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  display: flex;
}

.llm-prompt-element-btn-link:hover {
  background-color: rgba(201, 216, 248, .15);
}

.llm-prompt-element-top-header-choice {
  cursor: pointer;
  background-color: #ededed;
  border-radius: 12px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 10px;
  font-weight: 600;
}

.llm-prompt-element-top-header-choice.llm-prompt-choice-no-bg {
  color: rgba(51, 51, 51, .58);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ededed;
  display: none;
}

.llm-prompt-element-top-header-choice.llm-prompt-choice-no-bg:hover {
  color: #333;
  background-color: #ededed;
}

.llm-prompt-element {
  cursor: not-allowed;
  border-radius: 5px;
  transition: transform .4s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.llm-prompt-element.light-grey-bg-dark-mode.greyish-bg-in-darkmode:hover {
  transform: scale(1.04);
}

.llm-prompt-element.light-grey-bg-dark-mode.greyish-bg-in-darkmode.selected-llm-prompt-element {
  background-color: var(--grey-bg);
}

.llm-prompt-element.light-grey-bg-dark-mode.greyish-bg-in-darkmode.cursor-pointer {
  cursor: pointer;
}

.llm-desc-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.llm-header-desc {
  font-size: 12px;
  font-weight: 600;
}

.div-block-38 {
  display: flex;
}

.table-title-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}

.text-block-44 {
  font-size: 13px;
  font-weight: 600;
}

.llm-info-header-title {
  margin-top: 0;
  margin-bottom: 0;
}

.table-body-row-2 {
  color: #000;
  border-top: .4px solid #a7a7a7;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
}

.llm-detail-tab {
  background-color: rgba(0, 0, 0, 0);
}

.llm-detail-tab:hover {
  color: #2467eb;
  border-bottom: 2px solid #2467eb;
  font-weight: 600;
}

.llm-detail-tab.w--current {
  color: #2467eb;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid #2467eb;
  font-weight: 600;
}

.heading-15 {
  margin-top: 10px;
}

.flex-block-58 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  justify-content: space-between;
}

.llm-tab-right-side-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 300px;
}

.llm-tab-content {
  padding-top: 30px;
}

.button-primary {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(45deg, #2467eb 22%, rgba(36, 103, 235, .53) 60%);
  border-radius: 6px;
}

.button-primary:hover {
  background-color: #2467eb;
  background-image: none;
}

.button-primary.no-background {
  color: #2467eb;
  background-image: none;
  border: 1px solid #2467eb;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 600;
}

.button-primary.no-background:hover {
  color: #fff;
}

.llm-info-header-desc {
  width: 100%;
  max-width: 500px;
  margin-bottom: 0;
}

.flex-block-60 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
}

.llm-info-header-btn {
  margin-top: 10px;
  margin-bottom: 15px;
  display: none;
}

.prompts-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.flex-block-57 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.prompt-settings-slider-input-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-header-btn-icon {
  width: 15px;
}

.image-43 {
  width: 22px;
}

.heading-19 {
  color: #2467eb;
  font-size: 12px;
}

.prompt-model-dropdown {
  width: 100%;
  margin-top: 5px;
  position: relative;
}

.feedback-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #ededed;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

.tooltip-container {
  position: relative;
}

.textarea-3 {
  border: 1px #000;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  min-height: 350px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 40px;
}

.heading-18 {
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 10px;
  position: absolute;
  top: -9px;
  bottom: auto;
  left: 5px;
  right: auto;
}

.prompt-container-body {
  width: 100%;
}

.top-header-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  cursor: pointer;
  border-radius: 3px;
  align-items: center;
  padding: 10px 15px;
}

.top-header-btn:hover, .top-header-btn.top-header-active-btn {
  background-color: rgba(201, 216, 248, .25);
}

.image-44 {
  width: 20px;
}

.top-header-return-btn {
  cursor: pointer;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.top-header-return-btn:hover {
  background-color: rgba(201, 216, 248, .25);
}

.image-45 {
  width: 18px;
}

.add-new-prompt-content-2 {
  border: .6px solid #a7a7a7;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
}

.heading-20 {
  margin-top: 0;
  margin-bottom: 0;
}

.prompt-design-right-container {
  border: .5px solid #a7a7a7;
  min-width: 300px;
}

.prompt-settings-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
}

.flex-block-63 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}

.prompt-settings-row {
  width: 100%;
}

.flex-block-65 {
  justify-content: space-around;
  align-items: center;
}

.prompt-settings-block {
  width: 100%;
}

.top-header-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}

.prompt-container-header-icon {
  cursor: pointer;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.prompt-container-header-icon:hover {
  background-color: rgba(201, 216, 248, .25);
}

.prompt-settings-slider-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
}

.prompt-form-mic-container {
  cursor: pointer;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 15px;
  bottom: 0%;
  left: auto;
  right: 10px;
}

.prompt-form-mic-container:hover {
  background-color: rgba(201, 216, 248, .25);
}

.prompt-container-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: 6px;
  width: 100%;
}

.prompt-settings-input-field {
  border: .5px solid #a7a7a7;
  border-radius: 5px;
  width: 50px;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-header-btn-title {
  color: #2467eb;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
}

.prompt-design-body {
  flex-direction: row;
  width: 100%;
  padding: 20px 20px 0;
}

.image-46 {
  width: 19px;
}

.heading-17 {
  margin-top: 0;
}

.top-header-btn-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: space-between;
}

.top-header-btn-block.right-side-top-header-btn-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  width: 100%;
  padding-left: 10px;
}

.prompts-container-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.prompts-container-2.prompt-design-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  max-width: none;
  padding-left: 0;
}

.prompt-settings-label-block {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  align-items: center;
  font-size: 13px;
}

.prompt-settings-form {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-direction: column;
  display: flex;
}

.flex-block-62 {
  border: .5px solid #a7a7a7;
  border-radius: 6px;
  width: 100%;
}

.flex-block-64 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: 3px;
}

.form-4 {
  position: relative;
}

.prompt-report-responses-link {
  border-radius: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: none;
}

.prompt-report-responses-link:hover {
  background-color: rgba(201, 216, 248, .25);
}

.prompt-section-header-block-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-bottom: .6px solid #a7a7a7;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
  padding-left: 5px;
  padding-right: 25px;
}

.top-header {
  border-bottom: .5px solid #a7a7a7;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
}

.top-header.right-top-header {
  justify-content: flex-start;
}

.top-header.left-top-header {
  padding-left: 5px;
  padding-right: 10px;
}

.text-block-45 {
  color: #2467eb;
  font-size: 13px;
  font-weight: 600;
}

.form-block-9 {
  width: 100%;
  margin-bottom: 0;
}

.image-47 {
  width: 14px;
}

.prompt-design-left-container {
  border-top: .5px solid #a7a7a7;
  border-bottom: .5px solid #a7a7a7;
  border-left: .5px solid #a7a7a7;
  width: 100%;
}

.prompt-settings-slider-embed {
  align-items: center;
  width: 100%;
  display: flex;
}

.prompt-settings-form-block {
  width: 100%;
  margin-bottom: 0;
}

.add-new-prompt-result-container-2 {
  background-color: rgba(201, 216, 248, .46);
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  padding: 30px 25px;
}

.select-field-4 {
  background-color: rgba(0, 0, 0, 0);
  border: .6px solid #a7a7a7;
  border-radius: 5px;
  height: 35px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
}

.prompt-settings-label-icon {
  cursor: pointer;
  width: 19px;
}

.prompt-settings-label-icon:hover {
  transform: scale(1.1);
}

.prompt-container-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: .5px solid #a7a7a7;
  align-items: center;
  width: 100%;
  height: 55px;
  padding-left: 5px;
}

.tooltip-2 {
  z-index: 2147483647;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
  border: 1px solid #000;
  border-radius: 4px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 60px;
  max-width: 390px;
  height: 25px;
  padding: 0 10px;
  font-size: 13px;
  display: flex;
  position: absolute;
  top: -34px;
  bottom: auto;
  left: auto;
  right: auto;
}

.tooltip-2.prompt-mic-tooltip {
  white-space: nowrap;
  width: auto;
  display: none;
  top: 14px;
  right: -50px;
}

.heading-16 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}

.ai-expert-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(auto, 1fr);
  width: 100%;
  padding: 15px;
}

.ai-expert-grid.ai-expert-grid-modal {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: minmax(190px, 210fr) minmax(190px, 210fr) minmax(190px, 210fr) minmax(190px, 210fr);
  padding: 0 3px 5px;
}

.ai-expert-element-top-area {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.ai-expert-element-bottom-area {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 5px;
  font-size: 12px;
}

.ai-expert-element-bottom-area.all-whiten-in-dark-mode {
  justify-content: center;
}

.ai-expert-desc-container {
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 12px;
  overflow: auto;
}

.ai-expert-element-stat-icon {
  width: 15px;
}

.ai-expert-element-stat-block {
  opacity: .7;
  align-items: center;
  display: none;
}

.ai-expert-element-username {
  opacity: .7;
  color: #303030;
  font-style: italic;
  font-weight: 600;
}

.ai-expert-element-username:hover {
  opacity: 1;
}

.theme-switcher-container-2 {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 43px;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: 25px;
  right: auto;
}

.theme-switcher-container-2:hover {
  background-color: #ededed;
}

.theme-switcher-container-2.greyish-bg-in-darkmode.whiten-border-in-dark-mode.theme-switcher-container {
  display: none;
}

.flex-block-66 {
  width: 100%;
}

.prompt-grid-footer-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: .4px solid var(--dark-grey);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 15px;
}

.gallery-element-btn {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  opacity: .7;
  color: #000;
  cursor: pointer;
  border: .6px solid #a7a7a7;
  border-radius: 4px;
  align-items: center;
  padding: 5px 10px;
  font-size: 13px;
}

.gallery-element-btn:hover {
  background-color: #d1d1d1;
}

.gallery-element-btn.hidden {
  display: none;
}

.gallery-element-btn.gallery-element-edit-big-btn.btn-disabled {
  cursor: auto;
}

.gallery-element-btn.gallery-element-edit-big-btn.btn-disabled:hover {
  background-color: rgba(0, 0, 0, 0);
}

.gallery-element-btn.prompt-gallery-element-btn {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  padding: 6px 10px;
}

.gallery-element-btn.prompt-gallery-element-btn.prompt-gallery-element-save-btn {
  display: none;
}

.gallery-element-btn-icon {
  width: 13px;
}

.gallery-element-btn-icon.hidden {
  display: none;
}

.mentor-element-action-icon {
  opacity: .4;
  filter: grayscale();
  width: 14px;
}

.mentor-element-action-icon.gallery-save-icon {
  width: 15px;
}

.mentor-element-action-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 25px;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -10px;
}

.mentor-element-action-block.gallery-element-action-block.all-whiten-in-dark-mode {
  display: none;
}

.mentor-element-edit-action {
  width: 100%;
}

.mentor-element-edit-action.gallery-element-edit-btn {
  display: none;
}

.mentor-element-action {
  cursor: pointer;
  background-color: #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.mentor-element-action:hover {
  opacity: 1;
}

.mentor-element-action.gallery-element-save-btn {
  display: none;
}

.tooltip-3 {
  z-index: 2147483647;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
  border: 1px solid #000;
  border-radius: 4px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 60px;
  max-width: 390px;
  height: 25px;
  padding: 0 10px;
  font-size: 13px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 35px;
}

.tooltip-3.tooltip-remove-action {
  display: none;
}

.tooltip-3.tooltip-edit-action {
  width: 60px;
  height: 25px;
  display: none;
}

.prompt-grid-header-form-input-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  height: 25px;
  margin-bottom: 0;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 600;
}

.prompt-grid-header-form-block, .prompt-grid-description-form-block {
  width: 100%;
  margin-bottom: 0;
  display: none;
}

.prompt-grid-description-form-textarea {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  padding: 0 5px;
  font-size: 13px;
}

.icon {
  margin-right: 0;
}

.image-48 {
  width: 15px;
}

.default-featured-mentor-label-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  display: flex;
}

.ai-expert-header-btn-container {
  cursor: pointer;
  margin-left: 100px;
}

.featured-mentor-see-all-btn {
  opacity: .7;
  color: var(--primary);
  cursor: pointer;
  margin-right: 51px;
  font-weight: 600;
  text-decoration: none;
}

.featured-mentor-see-all-btn:hover {
  opacity: 1;
}

.prompt-grid-header {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  width: 100%;
  padding-top: 13px;
}

.prompt-gallery-element-view-header-form-input {
  color: var(--primary);
  border: 1px #000;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 19px;
  font-weight: 600;
}

.prompt-gallery-element-view-header-form-block {
  width: 90%;
  margin-bottom: 0;
  display: none;
}

.prompt-gallery-element-desc-parag {
  font-size: 14px;
  font-style: italic;
}

.flex-block-69 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  width: 100%;
}

.prompt-gallery-element-view-desc-form-block {
  width: 100%;
  margin-bottom: 0;
  display: none;
}

.prompt-gallery-element-view-desc-form-textarea {
  border: 1px #000;
  min-height: 30px;
  margin-bottom: 0;
  padding: 0;
  font-style: italic;
  line-height: 27px;
}

.table-block {
  justify-content: space-between;
  width: 100px;
  max-width: 100px;
  padding-right: 11px;
  display: flex;
}

.table-block.table-block-big {
  width: 150px;
  max-width: 150px;
}

.table-block.table-block-big.all-whiten-in-dark-mode.invited-users-table-block, .table-block.table-block-big.invited-users-table-block {
  width: 100%;
  max-width: none;
}

.table-block.table-block-medium {
  width: 120px;
  max-width: 120px;
}

.table-block.table-block-medium.all-whiten-in-dark-mode.invited-users-table-block, .table-block.table-block-medium.invited-users-table-block {
  width: 100%;
  max-width: none;
}

.table-block.table-block-small {
  width: 80px;
  max-width: 80px;
}

.table-block.table-block-smallest {
  width: 50px;
  max-width: 50px;
}

.table-block.table-block-very-large {
  width: 280px;
  max-width: 280px;
}

.table-block.table-block-large {
  width: 210px;
  max-width: 210px;
}

.table-block.table-block-very-big {
  width: 170px;
  max-width: 170px;
}

.user-row-switcher-embed {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0;
  display: flex;
}

.user-row-switcher-embed.justify-start-flex {
  justify-content: flex-start;
  width: auto;
}

.users-settings-pagination-block {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.users-settings-pagination-block.hidden {
  display: none;
}

.users-settings-pagination-block.centered {
  justify-content: center;
}

.users-settings-pagination-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.table-pagination-btn {
  cursor: pointer;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}

.table-pagination-btn:hover {
  background-color: var(--grey-bg);
}

.table-pagination-btn.table-pagination-btn-active {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.table-pagination-btn.table-pagination-btn-active:hover {
  background-color: rgba(0, 0, 0, 0);
}

.table-pagination-btn.table-pagination-btn-no-hover {
  cursor: auto;
}

.table-pagination-btn.table-pagination-btn-no-hover:hover {
  background-color: rgba(0, 0, 0, 0);
}

.table-pagination-btn.table-pagination-btn-inactive {
  cursor: not-allowed;
}

.table-pagination-btn-icon {
  width: 20px;
}

.table-pagination-btn-icon.table-pagination-btn-icon-disabled {
  opacity: .5;
}

.table-pagination-page-number {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.search-box-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: .6px solid #a7a7a7;
  border-radius: 5px;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

.search-box-block.all-whiten-in-dark-mode.invited-users-list-search-box {
  max-width: none;
}

.image-49 {
  opacity: .4;
  width: 17px;
}

.search-box-form-block {
  width: 100%;
  margin-bottom: 0;
}

.text-field-4 {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  height: 25px;
  margin-bottom: 0;
  padding-left: 5px;
  font-size: 13px;
}

.llm-prompt-element-btn-block {
  width: 100%;
}

.table-top-header-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.text-block-46 {
  font-size: 13px;
}

.llm-prompt-element-top-header-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.image-50 {
  width: 20px;
}

.llm-prompt-element-top-header-status-label {
  opacity: .69;
  font-size: 11px;
}

.llm-prompt-element-top-header-status-dot {
  background-color: red;
  border-radius: 6px;
  width: 6px;
  height: 6px;
}

.llm-prompt-element-top-header-status-dot.active {
  background-color: #0d8a1e;
}

.llm-prompt-element-top-header-status-dot.invalid {
  background-color: orange;
}

.llm-prompt-element-top-header-status {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  display: flex;
}

.required-field-label {
  color: red;
  display: none;
}

.rating-copy-retry-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ai-response-rating-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
}

.ai-response-rating-thumb {
  cursor: pointer;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  position: relative;
}

.ai-response-rating-thumb:hover {
  background-color: var(--grey-bg);
}

.ai-response-rating-thumb-icon {
  opacity: .7;
  width: 19px;
}

.ai-response-rating-thumb-icon.active {
  opacity: 1;
  display: none;
}

.user-permission-dropdown-toggle {
  padding: 0 22px 0 0;
}

.user-permission-dropdown-toggle-icon {
  margin-right: 0;
}

.user-permission-dropdown-list {
  background-color: #fff;
  border-radius: 5px;
  padding: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.user-permission-dropdown-list.light-black-bg-dark-mode.all-whiten-in-dark-mode.showww {
  display: block;
}

.user-permission-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.user-permission-dropdown-list-element {
  text-align: left;
  padding: 7px 10px;
}

.user-permission-dropdown-list-element:hover {
  background-color: rgba(36, 103, 235, .07);
}

.user-menu-tenant-dropdown {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.user-table-sort-icon {
  opacity: .5;
  cursor: pointer;
  width: 15px;
  transition: transform .2s;
}

.user-table-sort-icon:hover {
  opacity: 1;
  transform: scale(1.03);
}

.user-table-sort-icon.hidden {
  display: none;
}

.user-menu-tenant-container {
  border-bottom: .6px solid var(--dark-grey);
  width: 100%;
}

.user-menu-tenant-dropdown-toggle {
  justify-content: space-between;
  padding: 0;
  display: flex;
}

.user-menu-tenant-dropdown-list {
  width: 100%;
  min-width: 100%;
  top: 40px;
  left: 100px;
}

.data-resource-upload-box-block {
  width: 100%;
}

.data-resource-upload-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.datasource-element-picker {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
}

.datasource-element-picker:hover {
  border: 2px solid #c4d4ec;
}

.datasource-element-picker.inactive {
  filter: grayscale();
  cursor: not-allowed;
}

.datasource-element-picker.inactive:hover {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
}

.datasource-element-picker.disabled {
  cursor: not-allowed;
}

.datasource-element-picker.disabled:hover {
  border-color: rgba(0, 0, 0, 0);
}

.datasource-element-picker-icon {
  width: 35px;
}

.datasource-element-picker-label {
  color: #6e6e6e;
  font-weight: 600;
}

.table-text-link {
  text-decoration: none;
}

.table-text-link:hover {
  color: #124fc7;
}

.table-text-link.underline-on-hover:hover {
  text-decoration: underline;
}

.menu-element-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  opacity: .7;
  color: #000;
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.menu-element-block:hover {
  opacity: 1;
}

.menu-element-block.q-a-btn {
  display: none;
}

.menu-element-block.current {
  opacity: 1;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.menu-element-block.hidden {
  display: none;
}

.text-block-47 {
  opacity: 1;
  padding-left: 6px;
  padding-right: 6px;
}

.text-block-47.active-text {
  opacity: 1;
}

.menu-element-bt-border {
  border: 1.2px solid rgba(0, 0, 0, 0);
  width: 100%;
}

.menu-element-bt-border.active-element-bt {
  border-color: #2467eb;
}

.menu-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  width: 100%;
  height: 35px;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 51px;
  padding-left: 0;
  padding-right: 0;
}

.menu-container.data-source-types-menu-block {
  padding-bottom: 20px;
  display: flex;
}

.edit-mentor-tabs-container {
  width: 100%;
}

.edit-mentor-llm-tab {
  width: 100%;
  display: none;
}

.edit-mentor-dataset-tab {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  display: none;
}

.edit-mentor-system-prompt-tab {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: none;
}

.flex-block-70 {
  align-items: center;
}

.active-featured-mentor-desc-header {
  margin-top: 0;
  margin-bottom: 0;
}

.active-featured-mentor-desc-label {
  font-size: 12px;
  font-style: italic;
}

.active-featured-mentor-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  align-items: center;
  display: none;
}

.active-featured-mentor-img {
  border-radius: 50px;
  width: 40px;
}

.flex-block-71 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  width: 100%;
}

.markdown-template-parag {
  width: 100%;
}

.edit-mentor-setting-tab {
  width: 100%;
  display: flex;
}

.notification-header-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  width: 100%;
}

.notification-body {
  margin-top: 8px;
  padding-left: 35px;
}

.notification-close {
  cursor: pointer;
  border-radius: 3px;
  padding: 1px;
  position: absolute;
  top: 24px;
  bottom: auto;
  left: auto;
  right: 23px;
}

.notification-close:hover {
  background-color: rgba(30, 103, 235, .09);
}

.notification-element {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  padding: 24px 25px 14px;
  display: none;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.notification-header-block-icon {
  width: 20px;
}

.notification-body-parag {
  color: #333;
  margin-bottom: 0;
  font-size: 14px;
}

.notification-close-icon {
  opacity: .7;
  width: 18px;
}

.notification-header-title {
  color: #333;
  font-size: 16px;
}

.notifications-block {
  z-index: 2147483647;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.header-additional-link {
  opacity: .8;
  cursor: pointer;
  margin-right: 50px;
  font-weight: 600;
  text-decoration: underline;
}

.code-container {
  background-color: #eef2f8;
  border-radius: 6px;
  width: 100%;
  padding: 10px;
}

.code-container.lighter-grey-bg-dark-mode.hidden {
  display: none;
}

.copy-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  border: 1.3px solid #ededed;
  border-radius: 7px;
  align-items: center;
  padding: 5px 12px;
}

.copy-button:hover {
  background-color: rgba(36, 103, 235, .02);
}

.share-desc-label {
  font-size: 13px;
  font-weight: 300;
}

.modal-body-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 28px;
  padding-left: 40px;
  padding-right: 40px;
}

.modal-body-2.billing-overview-modal-body {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.copy-label {
  opacity: .8;
  color: #000;
  font-size: 13px;
}

.flex-block-72 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.share-script-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  width: 100%;
}

.visit-link-block {
  text-decoration: none;
}

.code-block {
  opacity: .8;
  color: #000;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 18px;
}

.modal-container-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 750px;
  max-height: 100%;
  padding: 20px 0 30px;
  display: block;
  overflow: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .85);
}

.modal-container-2.billing-overview-modal-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  max-width: 575px;
  display: flex;
  position: relative;
}

.heading-21 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}

.modal-header-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.modal-close-wrapper-2 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 16px;
  bottom: auto;
  left: auto;
  right: 5px;
}

.modal-header-chevron-icon {
  opacity: .5;
  width: 25px;
}

.copy-icon {
  opacity: .75;
  width: 15px;
}

.copy-icon.copied-icon {
  display: none;
}

.flex-block-73 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.site-top-header {
  background-image: linear-gradient(135deg, #2467eb, rgba(36, 103, 235, .75) 65%);
  height: 35px;
  position: relative;
}

.site-top-header.hidden {
  display: none;
}

.link-block-2 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  cursor: default;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-style: normal;
  text-decoration: none;
  display: none;
}

.image-51 {
  width: 18px;
  height: 18px;
}

.top-header-text {
  color: #fff;
  font-size: .85rem;
}

.top-header-text.pill {
  border: 1px solid var(--white);
  border-radius: 15px;
  padding: 1px 10px;
}

.top-header-img {
  filter: invert();
  width: 16px;
}

.top-header-closer-icon {
  filter: invert();
  width: 20px;
}

.top-header-closer-container {
  opacity: .7;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.top-header-closer-container:hover {
  opacity: 1;
}

.site-top-header-container {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.top-header-question-link:hover {
  opacity: .8;
}

.top-header-icon-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 100%;
  position: relative;
}

.audio-chat-welcome-text {
  color: var(--white);
  margin-bottom: 0;
}

.audio-chat-mentor-img-container {
  background-image: none;
  background-size: auto;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  position: relative;
}

.audio-chat-mentor-img {
  display: none;
}

.audio-chat-animated-soundwave-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.audio-chat-animated-soundwave-img {
  filter: contrast(0%) brightness(200%);
}

.audio-chat-action-btn {
  cursor: pointer;
  background-image: url('../images/siri-redux.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.audio-chat-action-btn.audio-chat-animated-icon {
  display: none;
}

.audio-chat-action-btn.audio-chat-hang-action-btn {
  background-color: rgba(218, 82, 82, .9);
  background-image: none;
  justify-content: center;
  align-items: center;
}

.audio-chat-action-btn.audio-chat-hang-action-btn:hover {
  background-color: #da5252;
}

.audio-chat-action-btn.audio-chat-record-stop-action-btn {
  background-image: none;
  background-size: auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

.audio-chat-action-icon {
  filter: invert();
  width: 28px;
  display: none;
}

.audio-chat-action-icon.display-block {
  display: block;
}

.audio-chat-action-icon.display-block.smaller {
  width: 23px;
}

.audio-chat-action-icon.display-block.smaller.hidden {
  display: none;
}

.audio-chat-action-icon.display-block.no-invert {
  filter: none;
}

.audio-chat-action-icon.display-block.no-invert.hidden {
  display: none;
}

.flex-block-74 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-block-48 {
  opacity: .8;
  color: var(--white);
  font-size: 18px;
}

.html-embed {
  display: none;
}

.edit-mentor-settings-form-textarea {
  border: .5px solid var(--dark-grey);
  border-radius: 4px;
}

.edit-mentor-settings-form-textarea.black-bg-white-color-form-field.textarea-medium-height {
  height: 70px;
  margin-bottom: 0;
}

.audio-chat-action-btn-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.edit-mentor-interface-tab {
  width: 100%;
  display: none;
}

.flex-block-35 {
  justify-content: flex-end;
  width: 100%;
}

.user-input-actions-container-3 {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 30px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  position: relative;
}

.user-input-actions-container-3:hover, .user-input-actions-container-3.upload-file-input-action-container {
  background-color: #ededed;
}

.user-input-actions-container-3.upload-file-input-action-container:hover {
  background-color: rgba(167, 167, 167, .53);
}

.flex-block-29 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.flex-block-61 {
  justify-content: space-between;
}

.image-52 {
  opacity: .7;
  width: 17px;
}

.section-submit-btn {
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(252deg, rgba(36, 103, 235, .52) 18%, rgba(36, 103, 235, .97) 73%);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.section-submit-btn:hover {
  background-color: #2467eb;
  background-image: none;
}

.input-submit-container-2 {
  justify-content: center;
  align-items: flex-end;
  width: 60px;
  display: flex;
}

.heading-22 {
  margin-top: 0;
  margin-bottom: 0;
}

.mentor-body {
  width: 100%;
  height: 100%;
  padding: 0 10px 10px;
}

.subsection-flex-block {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  height: auto;
}

.subsection-flex-block.hide {
  display: none;
}

.subsection-flex-block.advanced-css-block {
  height: 100%;
}

.image-53 {
  width: 35px;
}

.div-block-39 {
  width: 30px;
}

.course-creator-block {
  border: .6px #a7a7a7;
  border-radius: 7px;
  width: 100%;
  max-width: 1000px;
  padding-top: 0;
  padding-bottom: 0;
}

.ai-mentor-embed {
  border: .6px solid #a7a7a7;
  border-radius: 7px;
  width: 100%;
  height: 100%;
}

.footer-disclaimer-2 {
  opacity: .7;
  color: #000;
  font-size: 12px;
}

.footer-disclaimer-2.whiten-in-dark-mode {
  display: none;
}

.div-block-40 {
  background-image: url('../images/myself.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 40px;
  width: 40px;
  height: 40px;
}

.input-submit-icon-2 {
  opacity: .5;
  filter: grayscale();
  cursor: pointer;
  width: 25px;
  padding-bottom: 18px;
}

.form-5 {
  height: 100%;
  display: flex;
}

.course-creator-bottom {
  justify-content: flex-end;
  align-items: center;
  height: 60px;
}

.course-creator-bottom.justify-space-between {
  justify-content: space-between;
}

.div-block-41 {
  height: 60px;
  position: relative;
}

.div-block-42 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 10px;
}

.select-field-3 {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  height: 30px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 7px;
}

.bottom-area-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  padding-top: 12px;
  display: flex;
}

.subsection-title {
  opacity: .65;
  color: #000;
  font-weight: 600;
}

.image-54 {
  width: 20px;
}

.edit-user-prompt-icon-2 {
  width: 24px;
  height: 24px;
}

.suggestion-prompt-element-3 {
  color: #2467eb;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #2467eb;
  border-radius: 7px;
  align-items: center;
  height: auto;
  padding: 5px 8px;
  font-size: 13px;
  display: flex;
}

.suggestion-prompt-element-3:hover {
  background-color: rgba(36, 103, 235, .02);
}

.form-block-10 {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.copy-id-block {
  cursor: pointer;
  border: .6px solid #a7a7a7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.copy-id-block:hover {
  background-color: rgba(167, 167, 167, .12);
}

.form-6 {
  width: 100%;
  height: 100%;
}

.text-block-49 {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.pre-input-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: flex-end;
  display: flex;
}

.form-block-11 {
  width: 90%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.text-field {
  border: .6px solid #000;
  border-radius: 15px;
  height: 100%;
  padding-right: 65px;
  font-size: 16px;
}

.text-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode {
  width: 100%;
}

.tooltip-4 {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
  border: 1px solid #000;
  border-radius: 4px;
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 350px;
  max-width: 390px;
  height: 30px;
  padding: 0 10px;
  font-size: 13px;
  display: flex;
  position: absolute;
  top: -34px;
  bottom: auto;
  left: auto;
  right: auto;
}

.tooltip-4.tooltip-user-file-upload {
  display: none;
}

.tooltip-4.tooltip-microphone {
  width: 150px;
  max-width: 150px;
  display: none;
}

.div-block-2 {
  align-items: center;
  height: 100%;
  display: flex;
}

.ai-response-container-2 {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.ai-response-container-2.ai-prompt-response-container {
  width: 100%;
  max-width: 850px;
}

.suggestions-prompt-container-3 {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  text-align: right;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 0;
  padding-left: 0;
  display: none;
}

.image-55 {
  width: 23px;
}

.image-56 {
  width: 23px;
  display: block;
  overflow: hidden;
}

.course-creator-title-block {
  border-bottom: .6px solid #a7a7a7;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  display: none;
}

.heading-23 {
  opacity: .8;
}

.user-prompt-text-2 {
  color: #fff;
  background-image: linear-gradient(213deg, rgba(36, 103, 235, .77), #2467eb);
  border-radius: 12px;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 700px;
  height: 100%;
  min-height: 50px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 15px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2), 2px 0 5px rgba(0, 0, 0, .2);
}

.image-57 {
  width: 17px;
}

.course-creator-mentor-body {
  border: .7px solid #a7a7a7;
  border-radius: 7px;
  width: 100%;
  display: none;
}

.flex-block-75 {
  background-color: #f1f4f9;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}

.mentor-menu-toggle {
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.mentor-menu-toggle:hover {
  background-color: #ededed;
}

.flex-block-76 {
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 10px;
  display: none;
}

.form-select {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.course-creator-title {
  border-bottom: .6px #a7a7a7;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 16px;
}

.text-block-50 {
  font-size: 14px;
}

.bold-text-3 {
  font-size: 16px;
}

.flex-block-77 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
}

.flex-block-78 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.right-hand-side-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 15px;
  display: flex;
}

.course-creator-content {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-direction: column;
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  overflow: visible;
}

.mentor-header {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.file-upload-block {
  border: .95px solid #a7a7a7;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.flex-block-36 {
  justify-content: center;
  align-items: center;
}

.form-text-input {
  border-radius: 5px;
  width: 100%;
  height: 30px;
  margin-bottom: 0;
}

.stop-responding-btn-2 {
  border: 1px solid #2467eb;
  border-radius: 7px;
  align-self: center;
  align-items: center;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  display: none;
}

.div-block-3 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.course-creator-chatbot-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: .7px #a7a7a7;
  width: 100%;
  height: 100%;
  margin-top: 20px;
}

.textarea {
  border-radius: 5px;
  height: auto;
  margin-bottom: 0;
}

.textarea-4 {
  border-radius: 5px;
  min-height: 180px;
}

.textarea-4.black-bg-white-color-form-field.small-text-area {
  min-height: 60px;
}

.textarea-4.black-bg-white-color-form-field.small-text-area.mentor-default-prompt1-textarea.min-height-augmented {
  min-height: 80px;
}

.textarea-4.black-bg-white-color-form-field.min-height-reduced {
  min-height: 160px;
}

.warning-parag {
  color: #8a8585;
  text-align: center;
  font-size: 12px;
}

.flex-block-79 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}

.file-processing-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.html-embed-2 {
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.file-upload-over-container {
  width: 100%;
}

.file-uploading-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 10px;
  display: flex;
  overflow: auto;
}

.file-uploading-block.hidden {
  display: none;
}

.single-file-uploading-box {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--purple-lite);
  cursor: default;
  border-radius: 6px;
  align-items: center;
  height: 100%;
  padding: 8px;
  position: relative;
}

.file-upload-status-icon-block {
  background-image: linear-gradient(135deg, var(--primary), rgba(36, 103, 235, .66) 62%);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px;
}

.file-upload-info-block {
  height: 100%;
}

.file-upload-name-block {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
}

.file-upload-name-block.uploaded {
  color: var(--white);
  font-size: 14px;
}

.file-upload-extension-block {
  opacity: .66;
  font-size: 12px;
}

.file-upload-extension-block.uploaded {
  color: var(--white);
  font-size: 13px;
}

.file-upload-status-icon {
  filter: contrast(0%) brightness(200%);
}

.file-upload-status-icon.progress {
  display: block;
}

.file-upload-status-icon.progress.hide, .file-upload-status-icon.success, .file-upload-status-icon.hide {
  display: none;
}

.file-upload-closer-block {
  width: 13px;
  height: 100%;
  position: relative;
}

.file-upload-closer {
  opacity: .7;
  cursor: pointer;
  position: absolute;
  top: 3px;
  bottom: auto;
  left: 3px;
  right: 0%;
}

.file-upload-closer:hover {
  opacity: 1;
}

.flex-block-80 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.div-block-43 {
  width: 190px;
  margin-right: 10px;
  display: inline-block;
}

.file-prompt-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(213deg, rgba(36, 103, 235, .77), var(--primary));
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  height: 50px;
  padding: 5px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.file-prompt-block.audio-prompt-block {
  cursor: default;
}

.file-prompt-icon-block {
  background-color: var(--white);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}

.file-prompt-icon-block.audio-prompt-icon-block {
  cursor: pointer;
}

.file-prompt-icon.audio-prompt-icon {
  width: 20px;
}

.file-prompt-icon.audio-prompt-icon.hidden {
  display: none;
}

.site-notifications-container {
  position: absolute;
  top: 45px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.notifications-boxes-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
}

.notification-box {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  background-color: var(--white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 8px 11px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.notification-icon-block {
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  padding: 3px;
}

.notification-icon-block.success {
  background-color: rgba(37, 178, 61, .9);
}

.notification-icon-block.warning {
  background-color: rgba(243, 159, 76, .9);
}

.notification-icon-block.error {
  background-color: rgba(255, 84, 84, .9);
}

.notification-icon-block.info {
  background-color: #4379ee;
}

.notification-icon {
  filter: invert();
}

.notification-box-container {
  z-index: 2147483647;
  position: relative;
}

.notification-box-container.template {
  display: none;
}

.audio-prompt-wave-container {
  justify-content: center;
  align-items: center;
  height: 30px;
  overflow: hidden;
}

.audio-prompt-wave-img {
  filter: contrast(0%) brightness(200%);
  max-width: 160px;
}

.audio-prompt-dot-seperator {
  background-color: var(--white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 4px;
  height: 4px;
}

.audio-prompt-timer {
  color: var(--white);
  font-size: 14px;
}

.audio-circle-wave-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 60px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.audio-circle-wave-container.smaller {
  top: 10px;
}

.audio-circle-wave-container.hidden {
  display: none;
}

.audio-chat-mentor-image {
  z-index: 9999;
  border-radius: 180px;
  width: 180px;
  position: relative;
}

.audio-chat-action-btn-icon-container {
  z-index: 9999;
  background-color: var(--primary);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  position: relative;
}

.auth-input-group {
  width: 100%;
  display: none;
  position: relative;
}

.auth-input-group.visible {
  display: flex;
}

.text-error {
  background-color: var(--light-red);
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-top: -5px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 300;
}

.text-error.hidden {
  display: none;
}

.auth-submit-btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-image: linear-gradient(135deg, var(--primary), rgba(36, 103, 235, .64) 52%);
  color: var(--white);
  cursor: pointer;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  font-size: 15px;
  position: relative;
}

.auth-submit-btn:hover {
  background-color: var(--primary);
  background-image: none;
}

.auth-submit-btn.disabled {
  cursor: default;
}

.auth-submit-btn.disabled:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, var(--primary), rgba(36, 103, 235, .64) 52%);
}

.btn-spinner-block {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.btn-spinner-block.hidden {
  display: none;
}

.password-eye-block {
  opacity: .5;
  cursor: pointer;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding-left: 8px;
  padding-right: 8px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.password-eye-block:hover {
  opacity: .7;
}

.password-eye-icon {
  width: 20px;
}

.password-eye-icon.hidden, .submit-button-2 {
  display: none;
}

.anonymous-switcher-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.anonymous-switch-block {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.anonymous-switch-block.hidden {
  display: none;
}

.anonymous-switch-block.is-anonymous {
  background-color: var(--primary);
}

.anonymous-switch-icon {
  opacity: .8;
  width: 14px;
}

.anonymous-switch-icon:hover {
  opacity: 1;
}

.anonymous-switch-icon.img-whiten {
  filter: invert();
}

.anonymous-switch-container {
  height: 20px;
  display: none;
}

.chat-export-description-block {
  width: 100%;
}

.chat-export-description {
  opacity: .7;
  font-size: 15px;
}

.share-name-anonymous-block {
  background-color: var(--white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 1px 5px;
  position: absolute;
  top: -16px;
  left: auto;
  right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.share-name-anonymous-block.hidden {
  display: none;
}

.share-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding-left: 5px;
  padding-right: 5px;
}

.share-block:hover {
  background-color: var(--grey-bg);
}

.share-block.hidden {
  display: none;
}

.share-block-icon {
  height: 19px;
}

.share-block-label {
  margin-top: 0;
  margin-bottom: 0;
}

.chat-export-details {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.flex-block-81 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: 100%;
}

.flex-block-82 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
}

.flex-block-83 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.mentor-image-uploader {
  border: 1px dotted var(--dark-grey);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 145px;
  padding: 8px;
}

.mentor-image-uploader.empty {
  cursor: pointer;
  background-color: rgba(237, 237, 237, .42);
}

.mentor-image-uploader.empty:hover {
  border-width: 1.5px;
  border-color: var(--primary);
}

.upload-text-box {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.upload-text-box.hidden {
  display: none;
}

.text-block-52 {
  font-weight: 400;
}

.upload-img-box {
  background-image: url('../images/1.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.upload-img-box:hover {
  background-image: url('../images/1.jpg');
  background-position: 50%;
  background-size: cover;
}

.upload-img-box.hidden {
  display: none;
}

.upload-action-btn-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: rgba(0, 0, 0, .55);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
}

.upload-action-btn-container.hidden {
  display: none;
}

.img-whiten {
  filter: invert();
}

.upload-action-btn-icon {
  opacity: .8;
  filter: invert();
  cursor: pointer;
  width: 20px;
}

.upload-action-btn-icon:hover {
  opacity: 1;
}

.text-block-53 {
  font-weight: 700;
}

.flex-block-84 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  align-items: center;
}

.text-block-54 {
  opacity: .65;
  font-size: 13px;
  font-weight: 600;
}

.body-4 {
  font-family: Open Sans, sans-serif;
}

.share-main-content {
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.flex-block-85 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 60%;
  height: 100%;
}

.heading-24 {
  margin-top: 0;
  margin-bottom: 0;
}

.share-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
}

.text-block-55 {
  opacity: .7;
  font-size: 16px;
}

.share-header-seperator {
  background-color: rgba(201, 216, 248, .71);
  width: 100%;
  height: 1px;
  margin-top: 10px;
}

.share-export-header-main-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 100%;
}

.heading-25 {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-block-86 {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
}

.button {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, #2467eb 11%, rgba(36, 103, 235, .54) 70%);
  border-radius: 8px;
  padding: 16px;
  font-weight: 600;
}

.button:hover {
  background-color: var(--primary);
  background-image: none;
}

.user-prompt-textarea-field {
  resize: none;
  border: .6px solid #003aad;
  border-radius: 10px;
  height: 100%;
  padding-left: 10px;
  padding-right: 100px;
  font-size: 16px;
}

.user-prompt-textarea-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode {
  max-height: 50px;
  margin-bottom: 0;
  padding-top: 12px;
}

.user-prompt-textarea-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode.hidden {
  display: none;
}

.user-prompt-field-label {
  opacity: 0;
  width: .5px;
  height: .5px;
  margin-bottom: 0;
}

.featured-mentor-tooltip {
  z-index: 9;
  background-color: #f9fafb;
  border-radius: 10px;
  width: 100%;
  min-width: 220px;
  max-width: 250px;
  height: auto;
  max-height: 250px;
  padding: 8px 10px;
  font-size: 12px;
  display: none;
  position: fixed;
  top: 20px;
  overflow: auto;
  box-shadow: -2px 0 3px rgba(0, 0, 0, .2), 2px 2px 3px rgba(0, 0, 0, .2);
}

.btn-spinner-block-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 4px;
  display: flex;
  position: relative;
}

.btn-spinner-block-2.hidden {
  display: none;
}

.btn-spinner-block-2.audio-chat-action-icon.loading-btn.no-invert {
  filter: none;
}

.btn-spinner-block-2.audio-chat-action-icon.loading-btn.no-invert.more-centered {
  margin-top: -5px;
  padding-left: 15px;
}

.link-block-3, .link-block-4 {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .text-block.whiten-in-dark-mode.title-logo-container {
    font-size: 16px;
  }

  .right-hand-side {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-right: 15px;
  }

  .main-content {
    min-height: auto;
    margin-right: 10px;
  }

  .body-left-side {
    width: 38%;
  }

  .image-2 {
    display: block;
  }

  .text-block-3 {
    display: flex;
  }

  .text-block-3.prompt-container, .text-block-3.prompt-container:focus {
    display: block;
  }

  .suggestions-prompt-container {
    display: flex;
  }

  .suggestion-prompt-element {
    font-size: 13px;
  }

  .input-submit-container {
    margin-top: 0;
    margin-bottom: 62px;
  }

  .div-block-13 {
    width: 100%;
  }

  .modal-container.full-modal-container {
    display: flex;
    overflow: scroll;
  }

  .prompt-container {
    grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr);
  }

  .prompt-container.dataset-prompt-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown.ai-expert-menu-dropdown-block.light-black-bg-dark-mode.user-menu-dropdown-block-1 {
    max-width: 400px;
    max-height: 400px;
    overflow: auto;
  }

  .api-name-block, .api-key-block, .api-created-block, .api-last-used-block, .api-action-block {
    width: 120px;
    max-width: 120px;
  }

  .add-suggested-prompt-block {
    height: 226px;
  }

  .tooltip.tooltip-user-file-upload {
    right: -80px;
  }

  .switch-label {
    display: none;
  }

  .form-2 {
    align-items: center;
    display: flex;
  }

  .switch-input {
    opacity: 0;
    width: 0;
    height: 0;
    margin-top: 0;
    margin-left: 0;
  }

  .checkbox-field {
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 34px;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    position: relative;
  }

  .switch-slider {
    position: absolute;
  }

  .switch {
    margin-bottom: 0;
    padding-left: 0;
  }

  .slider {
    margin-bottom: 0;
  }

  .checkbox {
    float: none;
  }

  .form-block-3 {
    display: block;
  }

  .switch-html-embed {
    align-self: auto;
    display: block;
  }

  .new-chat-block {
    margin-top: -40px;
  }

  .header-settings-dropdown-container.ai-expert-dropdown-container {
    left: -48px;
  }

  .prompt-category-block {
    overflow: auto;
  }

  .prompt-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prompt-grid-element.add-prompt-grid-element.light-grey-bg-dark-mode.greyish-bg-in-darkmode.add-prompt-grid-element-1 {
    min-height: 130px;
  }

  .ai-expert-dropdown {
    margin-left: 20px;
  }

  .llm-grid-block {
    grid-template-columns: 1fr 1fr;
  }

  .llm-detail-tab {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flex-block-58 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .prompt-settings-slider-input-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .prompt-design-right-container {
    border-bottom-style: solid;
    padding-bottom: 10px;
  }

  .flex-block-65 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
  }

  .prompt-settings-slider-block {
    width: 100%;
  }

  .prompt-design-body {
    padding-left: 0;
    padding-right: 0;
  }

  .prompt-design-body.prompt-settings-body {
    padding-top: 0;
  }

  .prompts-container-2.prompt-design-container {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .prompt-settings-form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .prompt-report-responses-link {
    padding-left: 10px;
  }

  .top-header.right-top-header, .top-header.left-top-header {
    border-bottom-style: none;
  }

  .prompt-design-left-container {
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none;
  }

  .tooltip-2 {
    right: 10px;
  }

  .tooltip-2.prompt-mic-tooltip {
    right: -10px;
  }

  .ai-expert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flex-block-29 {
    display: block;
  }

  .suggestion-prompt-element-3 {
    font-size: 9px;
  }

  .suggestions-prompt-container-3 {
    display: none;
  }

  .course-creator-content {
    height: auto;
    overflow: visible;
  }

  .course-creator-chatbot-block {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  p, li {
    font-size: 14px;
  }

  .text-block.whiten-in-dark-mode.title-logo-container {
    font-size: 16px;
  }

  .right-hand-side {
    margin-right: 10px;
  }

  .email-container.all-whiten-in-dark-mode {
    display: none;
  }

  .main-content {
    margin-left: 10px;
  }

  .body-left-side {
    display: none;
  }

  .body-right-side {
    height: auto;
  }

  .suggestions-prompt-container {
    display: flex;
  }

  .suggestion-prompt-element {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    font-size: 13px;
  }

  .form-block {
    width: 100%;
  }

  .input-submit-container {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .guided-question-block {
    padding-right: 37px;
  }

  .default-suggestion-prompts-block.all-primary-color-in-dark-mode.primary-bg-hover-in-dark-mode.hidden-suggestion-prompt, .footer-disclaimer.whiten-in-dark-mode {
    display: none;
  }

  .modal-header {
    padding-left: 10px;
  }

  .modal-header.add-prompt-modal-header {
    padding-left: 5px;
  }

  .modal-body {
    padding-left: 10px;
    padding-right: 10px;
  }

  .prompt-container.dataset-prompt-container {
    grid-template-columns: 1fr 1fr;
  }

  .user-menu-dropdown-container {
    display: none;
    top: 80px;
    right: 125px;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown {
    width: auto;
  }

  .api-name-block, .api-key-block, .api-created-block, .api-last-used-block, .api-action-block {
    width: 100px;
    max-width: 100px;
  }

  .tooltip.tooltip-user-file-upload {
    right: -70px;
  }

  .tooltip.tooltip-microphone {
    right: -45px;
  }

  .tooltip.tooltip-new-chat {
    left: -15px;
  }

  .tooltip.tooltip-trial {
    left: -80px;
  }

  .switcher-container {
    display: none;
  }

  .switcher-container.switcher-mobile-container {
    padding: 5px 20px;
    display: flex;
  }

  .new-chat-block {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .header-action-btn.all-whiten-in-dark-mode.greyish-bg-in-darkmode.ai-expert-header-action-btn {
    display: flex;
  }

  .header-settings-dropdown-container.ai-expert-dropdown-container {
    left: -98px;
  }

  .header-settings-dropdown.submenu-with-children-dropdown {
    display: block;
  }

  .prompt-category-container.featured-mentors-container {
    overflow: visible;
  }

  .prompt-gallery-grid, .prompt-gallery-grid.edit-mentor-system-prompt-grid {
    grid-template-columns: 1fr;
  }

  .ai-expert-dropdown-toggle {
    padding: 0;
  }

  .ai-expert-dropdown {
    margin-left: 20px;
  }

  .ai-expert-desc-block.selected-ai-expert-desc-block, .ai-expert-choose-label {
    display: none;
  }

  .rate-limit-exceed-container {
    left: auto;
  }

  .prompt-settings-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-header-btn-block.right-side-top-header-btn-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .prompt-settings-form {
    padding-left: 0;
    padding-right: 0;
  }

  .ai-expert-grid.ai-expert-grid-modal {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-element-btn-icon.gallery-element-btn-showed-icon {
    display: block;
  }

  .icon.ai-expert-dropdown-icon {
    display: none;
  }

  .flex-block-67 {
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }

  .default-featured-mentor-label-block {
    display: none;
  }

  .ai-expert-header-btn-container.all-whiten-in-dark-mode {
    margin-left: 20px;
  }

  .edit-mentor-system-prompt-tab, .active-featured-mentor-desc-block {
    display: none;
  }

  .modal-body-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-header-2 {
    width: 90%;
  }

  .course-creator-block {
    width: 100%;
  }

  .footer-disclaimer-2.whiten-in-dark-mode {
    display: none;
  }

  .form-block-11 {
    width: 100%;
  }

  .suggestions-prompt-container-3 {
    display: none;
  }

  .anonymous-switcher-container {
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .header {
    height: 71px;
  }

  .left-hand-side {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .menu-toggler.greyish-bg-in-darkmode {
    border-radius: 45px;
    width: 45px;
    height: 40px;
    margin-right: 10px;
  }

  .logo-container {
    margin-left: -5px;
    margin-right: 10px;
    display: flex;
  }

  .text-block {
    font-size: 14px;
  }

  .text-block.whiten-in-dark-mode.title-logo-container {
    white-space: nowrap;
    font-size: 14px;
    display: block;
  }

  .right-hand-side {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .email-container {
    display: none;
  }

  .image.user-pic-img {
    width: 30px;
    min-width: 30px;
  }

  .body {
    overflow: auto;
  }

  .body-right-side.light-grey-bg-dark-mode {
    object-fit: fill;
    overflow: scroll;
  }

  .ai-response-container.ai-response-lefty {
    width: 95%;
  }

  .upper-area {
    overflow: scroll;
  }

  .suggestion-prompt-element {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .input-submit-container {
    margin-bottom: 42px;
  }

  .user-prompt-input-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode {
    border-radius: 6px;
    font-size: 16px;
  }

  .div-block-8 {
    right: 2px;
  }

  .user-input-field-block {
    height: 47px;
  }

  .course-header {
    height: 51px;
  }

  .course-header-right {
    display: none;
  }

  .course-header-right-mobile {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .course-header-mobile-action-btn {
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(92deg, var(--primary), rgba(36, 103, 235, .69) 72%);
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    height: 22px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
  }

  .course-header-mobile-action-btn:hover {
    background-color: var(--primary);
    background-image: none;
  }

  .image-16 {
    opacity: .81;
    filter: invert();
    align-self: center;
    width: 14px;
  }

  .single-course-right {
    display: none;
  }

  .modal-container {
    padding-left: 0;
    padding-right: 0;
    overflow: auto;
  }

  .modal-container.ai-audio-chat-modal-container {
    border-radius: 0;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .modal-header {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-header-title {
    font-size: 18px;
  }

  .modal-close-wrapper {
    top: 15px;
    right: 3px;
  }

  .modal-body.ai-audio-chat-modal-body {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    height: 100%;
  }

  .prompt-container {
    grid-template-columns: minmax(240px, 1fr);
  }

  .prompt-container.dataset-prompt-container {
    grid-template-columns: 1fr;
  }

  .user-menu-dropdown-container {
    left: 0;
    right: auto;
  }

  .user-menu-dropdown-block {
    position: absolute;
    right: 0;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown {
    right: 30px;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown.ai-expert-menu-dropdown-block {
    left: 5px;
    right: 30px;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-settings-dropdown.ai-expert-menu-dropdown-block.light-black-bg-dark-mode.user-menu-dropdown-block-1 {
    max-width: 220px;
    left: auto;
    right: auto;
  }

  .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.help-user-menu-dropdown-block, .user-menu-dropdown-block.black-bg-dark-mode.all-whiten-in-dark-mode.whiten-border-in-dark-mode.user-menu-dropdown-block-1 {
    right: 10px;
  }

  .user-menu-link.greyish-bg-in-darkmode.display-only-on-mobile {
    display: flex;
  }

  .payment-method-block {
    grid-template-columns: minmax(200px, 1fr);
  }

  .add-suggested-prompt-block {
    display: flex;
  }

  .tooltip.tooltip-user-file-upload {
    width: 300px;
    font-size: 11px;
    right: -85px;
  }

  .tooltip.tooltip-trial {
    width: 280px;
    max-width: 280px;
    height: 60px;
    display: none;
    left: -5px;
  }

  .text-block-28 {
    text-align: center;
  }

  .auth-page-block.gap-reduced {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .whiten-in-dark-mode.chevron-img {
    width: 15px;
  }

  .switcher-container.add-new-prompt-switcher-container {
    display: flex;
  }

  .switch-label-txt {
    font-size: 11px;
  }

  .new-chat-block {
    margin-bottom: 44px;
  }

  .header-action-btn.all-whiten-in-dark-mode.greyish-bg-in-darkmode.submenu-with-children-dropdown-element {
    opacity: 1;
  }

  .header-action-btn.all-whiten-in-dark-mode.greyish-bg-in-darkmode.display-only-on-mobile {
    display: none;
  }

  .header-settings-dropdown-container.settings-dropdown {
    left: auto;
    right: auto;
  }

  .header-settings-dropdown-container.settings-dropdown.mobile-settings-dropdown {
    top: 40px;
  }

  .header-settings-dropdown-container.ai-expert-dropdown-container {
    left: -10px;
  }

  .header-settings-dropdown.submenu-with-children-dropdown {
    display: flex;
  }

  .header-settings-dropdown.display-only-on-mobile {
    display: none;
  }

  .header-help-dropdown-container {
    left: 40px;
  }

  .header-help-dropdown-container.help-dropdown {
    left: auto;
    right: auto;
  }

  .image-39 {
    display: none;
  }

  .prompt-gallery-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .prompt-section-header-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ai-expert-dropdown-toggle {
    padding-right: 0;
  }

  .ai-expert-dropdown {
    margin-left: 0;
  }

  .ai-expert-choose-label {
    white-space: pre-wrap;
  }

  .rate-limit-exceed-block.lighter-grey-bg-dark-mode {
    display: none;
  }

  .llm-grid-block, .llm-grid-block.edit-mentor-llm-grid-block {
    grid-template-columns: 1fr;
  }

  .tabs-menu {
    white-space: nowrap;
    width: 100%;
    display: flex;
    overflow: auto;
  }

  .prompt-design-body {
    padding-left: 0;
    padding-right: 0;
  }

  .prompt-section-header-block-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-header.left-top-header {
    border-bottom-style: none;
    flex-direction: column;
    align-items: flex-start;
    height: 85px;
    padding-bottom: 5px;
  }

  .heading-16 {
    white-space: nowrap;
    font-size: 15px;
  }

  .ai-expert-grid, .ai-expert-grid.ai-expert-grid-modal {
    grid-template-columns: 1fr;
  }

  .prompt-grid-footer-block {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .ai-expert-header-btn-container.all-whiten-in-dark-mode {
    margin-left: 0;
  }

  .featured-mentor-see-all-btn {
    margin-right: 28px;
  }

  .text-field-4 {
    font-size: 13px;
  }

  .table-top-header-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .user-menu-tenant-dropdown-list {
    left: 0;
    right: 15px;
  }

  .data-resource-upload-grid {
    padding: 10px;
  }

  .menu-container {
    padding-left: 0;
    padding-right: 0;
    overflow: auto;
  }

  .menu-container.data-source-types-menu-block {
    justify-content: flex-start;
  }

  .edit-mentor-llm-tab {
    display: none;
  }

  .active-featured-mentor-img.no-filter-applied-in-darkmode {
    width: 30px;
    min-width: 30px;
  }

  .modal-container-2 {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .modal-header-2 {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-close-wrapper-2 {
    right: 3px;
  }

  .site-top-header {
    display: block;
  }

  .top-header-text {
    font-size: .75rem;
  }

  .audio-chat-action-btn-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-block-29 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-submit-btn {
    margin-right: 10px;
  }

  .course-creator-block {
    width: 100%;
  }

  .course-creator-bottom.justify-space-between {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    margin-top: 15px;
  }

  .div-block-2 {
    display: none;
  }

  .flex-block-81 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column-reverse;
  }

  .user-prompt-textarea-field.black-bg-dark-mode.whiten-border-in-dark-mode.whiten-in-dark-mode {
    border-radius: 6px;
    max-height: 47px;
  }
}

#w-node-b576be1e-6ba4-dfcb-bbf1-cb91dcf3c001-e5765214, #w-node-af72694c-8686-bb95-68c4-b455ff8555be-e5765214, #w-node-_51750434-663d-833b-fbce-3a0daf0f3ff7-e5765214, #w-node-a7cd9a1e-06e8-090b-f8f6-b8c45befa912-e5765214, #w-node-c759fff2-ef9c-a105-a409-237d50d636d9-e5765214, #w-node-_5a505de0-516a-2a64-e67d-16956e5a70c0-e5765214, #w-node-_9e603d53-b516-ca5b-44d6-a98f039371be-e5765214, #w-node-_5068f3b8-e576-1e69-2bdf-072c5c46ac84-e5765214, #w-node-bd8f269d-4a7e-2c14-1de7-265adbd63344-e5765214, #w-node-_1af02b37-6ae8-68eb-1777-b7601022c2da-e5765214, #w-node-c0b90eb4-6a75-f47f-543a-0b7e429cda10-e5765214, #w-node-_9047bc1f-67de-2625-2129-aeb12369f037-e5765214, #w-node-b49f10dc-e0b4-c7e5-4451-56865fbcf1a8-e5765214, #w-node-_78e44e4f-58e0-5de2-4d4b-e90ad7c59527-e5765214, #w-node-_430e9959-b313-c119-2eb0-d01cde48af2f-e5765214, #w-node-_98386a6b-64c9-eb3a-9261-40599700f76f-e5765214, #w-node-_4c40a3ca-6a09-375a-6d62-9048280f24ac-e5765214, #w-node-ca34571f-0009-ed02-817e-fa0511acfcd3-e5765214, #w-node-_5c2b3921-894c-8db9-de54-ad641edb49f7-e5765214, #w-node-_2d292711-280e-35a1-93e1-027b49b4d472-e5765214, #w-node-_24b7052b-7405-e843-f43b-f14a53fc5422-e5765214, #w-node-f2bf37f5-9a68-cac6-0b90-7cac47d6821d-e5765214, #w-node-c96bb44d-9136-2f69-f85d-e1c1acfa426f-e5765214, #w-node-bafb95fd-ac19-cccd-3a38-eb68419255e2-e5765214, #w-node-_9f234fd4-0146-f80b-75bf-bf8439c1ed76-e5765214, #w-node-b673454d-fcc7-35dd-ae95-88a4a048dbe1-e5765214, #w-node-_4cb5c06f-8506-d5c2-b08c-1dcb6be5726f-e5765214, #w-node-e1a0a13b-7fc1-583d-8ecd-e7622bb9dbe2-e5765214, #w-node-_15e94364-c882-f7a6-3bbf-1312842559c4-e5765214, #w-node-_65ea6452-cbf3-f003-6f19-26670576e35d-e5765214, #w-node-b44be262-c2f3-c32d-452e-d05fbfdb71ec-e5765214, #w-node-cc3a71dd-e361-8e31-6652-2951680b2972-e5765214, #w-node-cc3a71dd-e361-8e31-6652-2951680b2983-e5765214, #w-node-cc3a71dd-e361-8e31-6652-2951680b2994-e5765214, #w-node-cc3a71dd-e361-8e31-6652-2951680b29a5-e5765214, #w-node-d26d9d5d-7f63-c8b7-9a9a-fd0ab689a6f4-e5765214, #w-node-_2cdc37cf-6fcc-d44c-71c2-352982384501-e5765214, #w-node-_0454630f-22ed-11ec-f729-7e680fe995fa-e5765214, #w-node-_1b6c5256-b925-79e9-f34b-0cdec0a4e534-e5765214, #w-node-_9185f9b8-cd24-ba2c-2492-2cf95e6df7e4-e5765214, #w-node-b4bcbbc4-4267-f9b9-f5ac-26fd18f8c710-e5765214, #w-node-_92fd9786-901f-3562-c5c4-e56c5fa930df-e5765214, #w-node-_6058983d-a036-bfab-a90b-7047e792d469-e5765214, #w-node-_097c02ac-e437-5106-4e8e-cc17689e8408-e5765214, #w-node-c46101f8-a0ce-b7a5-a4f0-088197d66407-e5765214, #w-node-_284bf844-f06b-74eb-3609-10a2208f3c59-e5765214, #w-node-_6d6cb5d0-af0e-20d6-cf58-c504a8086be8-e5765214, #w-node-d2369ff8-d840-495a-bf4a-8ac751a369d8-e5765214, #w-node-fd4f2f42-6ef7-9af6-b549-e27032c3243f-e5765214, #w-node-e48dc68a-76ec-d559-3d8d-164e5df00028-e5765214, #w-node-_7742785c-c334-11bc-b54a-fce8d3bead4c-e5765214, #w-node-fcbd4778-f8a0-08d1-d9d3-88a63a7920aa-e5765214, #w-node-_117af3f1-7b88-7102-671f-e0fdeba598be-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e1a2-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e1bc-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e1d6-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e1f0-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e20a-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e224-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e23e-e5765214, #w-node-f1c1e32d-91cd-4886-5dff-31d83e92e258-e5765214, #w-node-a2a9ea78-1900-d773-3b09-2ff6309a5596-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c255418b0-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c255418ef-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c2554192e-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c2554196e-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c255419ae-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c255419ed-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c25541a2c-e5765214, #w-node-_1dc72672-b432-9a64-835d-c12c25541aac-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5c48-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5c62-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5c7c-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5c96-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5cb0-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5cca-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5ce4-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5cfe-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5d36-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5d79-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5db8-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5df7-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5e37-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5e77-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5eb6-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5ef5-e5765214, #w-node-_3d85f56c-c65d-b956-7f38-bd18ab5e5f35-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058879-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c7981505887d-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058891-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058881-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058885-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058889-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c7981505888d-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058895-e5765214, #w-node-_4ff42ff9-5609-60a8-f88e-c79815058899-e5765214, #w-node-b576be1e-6ba4-dfcb-bbf1-cb91dcf3c001-e576521e, #w-node-af72694c-8686-bb95-68c4-b455ff8555be-e576521e, #w-node-_51750434-663d-833b-fbce-3a0daf0f3ff7-e576521e, #w-node-a7cd9a1e-06e8-090b-f8f6-b8c45befa912-e576521e, #w-node-c759fff2-ef9c-a105-a409-237d50d636d9-e576521e, #w-node-_5a505de0-516a-2a64-e67d-16956e5a70c0-e576521e, #w-node-_9e603d53-b516-ca5b-44d6-a98f039371be-e576521e, #w-node-_5068f3b8-e576-1e69-2bdf-072c5c46ac84-e576521e, #w-node-bd8f269d-4a7e-2c14-1de7-265adbd63344-e576521e, #w-node-_1af02b37-6ae8-68eb-1777-b7601022c2da-e576521e, #w-node-c0b90eb4-6a75-f47f-543a-0b7e429cda10-e576521e, #w-node-_9047bc1f-67de-2625-2129-aeb12369f037-e576521e, #w-node-b49f10dc-e0b4-c7e5-4451-56865fbcf1a8-e576521e, #w-node-_9185f9b8-cd24-ba2c-2492-2cf95e6df7e4-e576521e, #w-node-b4bcbbc4-4267-f9b9-f5ac-26fd18f8c710-e576521e, #w-node-_92fd9786-901f-3562-c5c4-e56c5fa930df-e576521e, #w-node-_6058983d-a036-bfab-a90b-7047e792d469-e576521e, #w-node-_097c02ac-e437-5106-4e8e-cc17689e8408-e576521e, #w-node-c46101f8-a0ce-b7a5-a4f0-088197d66407-e576521e, #w-node-_284bf844-f06b-74eb-3609-10a2208f3c59-e576521e, #w-node-_6d6cb5d0-af0e-20d6-cf58-c504a8086be8-e576521e, #w-node-d2369ff8-d840-495a-bf4a-8ac751a369d8-e576521e, #w-node-fd4f2f42-6ef7-9af6-b549-e27032c3243f-e576521e, #w-node-e48dc68a-76ec-d559-3d8d-164e5df00028-e576521e, #w-node-_7742785c-c334-11bc-b54a-fce8d3bead4c-e576521e, #w-node-fcbd4778-f8a0-08d1-d9d3-88a63a7920aa-e576521e, #w-node-_117af3f1-7b88-7102-671f-e0fdeba598be-e576521e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


