:root {
  --primary: #ed724f;
  --light-bg: #f2f4fa;
  --blue: #00a1d6;
  --light-gray: #e4e4e4;
  --primary-light: #ffddd3;
  --text-color: #002b54;
  --green: #25e6ac;
  --gray: #8f8f8f;
  --red: #d66d6d;
}

body {
  letter-spacing: .2px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.login-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.login-page-body {
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  display: flex;
}

.login-message {
  text-align: center;
  display: block;
}

.login-button-text {
  color: #fff;
  font-weight: 700;
}

.login-button-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  padding: 10px 5px;
  display: flex;
}

.login-button-icon {
  background-image: url('../images/google-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

.login-page-logo {
  background-image: url('../images/256.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100px;
}

.login-page-footer {
  text-align: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  inset: auto 0% 0%;
}

.side-panel {
  background-color: var(--light-bg);
  flex-flow: column;
  min-width: 20%;
  max-width: 20%;
  padding: 0 0 10px;
  display: flex;
  overflow: auto;
}

.chat-view {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex-flow: column;
  width: 60%;
  min-width: 60%;
  max-width: 60%;
  position: relative;
  overflow: auto;
}

.chat-page-body {
  background-color: var(--light-bg);
  display: flex;
}

.chat-status {
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.chat-status-text {
  color: #969696;
  padding-left: 15px;
  padding-right: 15px;
}

.user-message {
  background-color: #ddd;
  border-radius: 8px;
  max-width: 90%;
  padding: 10px;
  font-size: 1rem;
}

.user-message-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  padding: 5px;
  display: flex;
}

.model-message-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 5px;
  display: flex;
}

.model-message {
  border-radius: 8px;
  width: 100%;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
}

.chat-message-input-wrapper {
  justify-content: center;
  align-items: center;
  height: 15%;
  padding: 15px;
  display: flex;
}

.chat-messages-wrapper {
  flex-flow: column;
  max-width: 100%;
  height: 80%;
  display: flex;
  position: relative;
  overflow: auto;
}

.message-input {
  resize: vertical;
  border-radius: 8px;
  margin-bottom: 2.5px;
}

.message-input-action-button {
  color: #8f8f8f;
  cursor: pointer;
  padding: 5px;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 25px;
  line-height: 30px;
  transition: all .2s;
}

.message-input-action-button:hover, .message-input-action-button.active {
  color: var(--blue);
}

.message-actions-wrapper {
  display: flex;
}

.form-block {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-flow: column;
  width: 100%;
  max-height: 85vh;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

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

.form-block.dialog {
  border-radius: 8px;
  width: 50%;
  box-shadow: 0 0 5px #0003;
}

.button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.button.chat {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  background-color: var(--light-gray);
  color: #727272;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
}

.button.chat.selected {
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  color: var(--text-color);
}

.button.memory {
  background-color: var(--light-gray);
  justify-content: space-between;
  align-items: flex-start;
}

.button.memory.selected {
  background-color: #daf6ff;
}

.button.blue {
  background-color: var(--text-color);
}

.button.blue.small {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 10px;
}

.button.green {
  background-color: var(--green);
}

.button.gray {
  background-color: var(--gray);
}

.button.small {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 10px;
}

.button-icon {
  color: #fff;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.button-icon.red {
  color: red;
  font-weight: 400;
}

.button-icon.gray {
  color: var(--gray);
  min-width: 10px;
}

.chat-button-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  font-weight: 400;
  line-height: 14px;
  overflow: hidden;
}

.chat-button-text.small {
  font-size: 10px;
}

.button-indicator {
  background-color: #a7a7a7;
  border-radius: 10px;
  width: 8px;
  min-width: 8px;
  height: 8px;
  display: block;
}

.button-indicator.active {
  background-color: #40ff00;
}

.memory-button-text-wrapper {
  width: calc(100% - 40px);
}

.api-config-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--light-bg);
  color: var(--text-color);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-flow: column;
  padding: 10px;
  display: flex;
}

.api-config-form.settings {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding-bottom: 30px;
  overflow: auto;
}

.form-title-header {
  margin-bottom: 20px;
}

.text-input {
  color: var(--text-color);
  border-radius: 8px;
  margin-bottom: 0;
  font-family: Inconsolata, monospace;
}

.input-explainer {
  color: #616161;
  font-size: 11px;
  font-weight: 400;
}

.config-input-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  flex-flow: column;
  padding: 5px 10px;
  display: flex;
}

.nav {
  background-color: var(--light-bg);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 2.5px 5px;
  display: flex;
}

.nav.bottom {
  display: none;
}

.chat-page {
  height: calc(100vh - 50px);
  max-height: calc(100vh - 50px);
  display: flex;
}

.nav-logo {
  background-image: url('../images/256.svg');
  background-position: 50%;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  width: 45px;
  height: 45px;
}

.nav-usrename-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.nav-username {
  font-size: 14px;
  font-weight: 400;
}

.nav-action-button {
  cursor: pointer;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.nav-action-button.menu {
  display: none;
}

.message-action-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--primary);
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.message-action-button {
  color: var(--gray);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 2px;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 20px;
  font-weight: 300;
  display: flex;
}

.panel-actions-wrapper {
  background-image: linear-gradient(180deg, var(--light-bg) 90%, #f2f4fa00);
  padding: 10px;
  position: sticky;
  top: 0;
}

.panel-actions-wrapper.back {
  display: none;
}

.panel-buttons-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.back-button-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.message-input-action-button-wrapper {
  color: #8f8f8f;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 25px;
  line-height: 30px;
  position: relative;
}

.premium-cunt {
  font-family: Lato, sans-serif;
  font-size: 9px;
  line-height: 10px;
  position: absolute;
  bottom: 0%;
  left: auto;
  right: -5px;
}

.dialog-fader {
  object-fit: cover;
  background-image: linear-gradient(#fff, #fff0);
  width: 100%;
  height: 25px;
  min-height: 25px;
  position: sticky;
  top: 0;
}

.dialog-fader.bottom {
  background-image: linear-gradient(#fff0, #fff 70%);
  top: auto;
  bottom: 0;
}

.config-buttons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.config-explainer-text {
  color: var(--gray);
  font-size: 12px;
  line-height: 14px;
}

.config-explainer-text.token-count {
  color: var(--gray);
  text-align: right;
}

.config-test-button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.config-title {
  margin-top: 0;
  margin-bottom: 0;
}

.config-tabs-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.config-tab-select-button {
  border: 1px solid var(--light-bg);
  color: var(--gray);
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 10px 10px 5px;
  font-weight: 700;
}

.config-tab-select-button.selected {
  background-color: var(--light-bg);
  color: var(--text-color);
}

.config-page-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.toggle-input-wrapper {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.toggle-input-bg {
  background-color: var(--primary-light);
  border-radius: 100px;
  justify-content: flex-end;
  align-items: center;
  width: 40px;
  height: 20px;
  transition: all .2s;
  display: flex;
  position: relative;
  box-shadow: inset 2px 2px 8px #0003;
}

.toggle-input-bg.disabled {
  filter: grayscale();
}

.toggle-circle {
  background-color: var(--green);
  border-radius: 100px;
  width: 20px;
  height: 20px;
  transition: all .2s;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: translate(0);
}

.toggle-circle.disabled {
  transform: translate(-20px);
}

.toggle-status {
  color: var(--gray);
}

.toggle-input-label {
  margin-bottom: 0;
}

.field-label {
  margin-bottom: 0;
  line-height: 14px;
}

.config-label-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.toggle-input-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.prompt-setting-label-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.new-memory-dialog {
  background-color: #ffffffd9;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.new-memory-dialog.hidden {
  display: none;
}

.button-text-wrapper {
  width: calc(100% - 20px);
}

.webcheck-body {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--light-bg);
  color: var(--gray);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: opacity .2s;
  display: flex;
}

.webcheck-title {
  margin-bottom: 20px;
}

.bold-text {
  font-size: 22px;
  line-height: 25px;
}

.webcheck-form {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-bottom: 5px;
  display: flex;
}

.webcheck-input {
  color: var(--text-color);
  border-radius: 8px;
  margin-bottom: 0;
}

.webcheck-submit-btn {
  background-color: var(--primary);
  border-radius: 8px;
}

.webcheck-form-block {
  width: 600px;
  margin-top: 0;
  margin-bottom: 0;
}

.webcheck-form-block.hidden {
  display: none;
}

.webcheck-external-link, .webcheck-external-link:visited {
  color: var(--blue);
  text-decoration: none;
}

.text-block {
  text-align: center;
}

.webcheck-scanning-animation-wrapper {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--light-bg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.webcheck-scanning-animation-wrapper.hidden {
  display: none;
}

.webcheck-small-text {
  text-align: center;
}

.webcheck-animation-gif {
  width: 200px;
}

.webcheck-gauge-wrapper {
  width: 400px;
  height: 200px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.webcheck-gauge-outer {
  background-color: var(--text-color);
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  width: 100%;
  height: 200px;
}

.webcheck-gauge-outer-inner {
  background-color: var(--primary);
  transform-origin: 50% 0;
  border-radius: 0 0 500px 500px;
  width: 100%;
  height: 200px;
  transform: rotate(66deg);
  box-shadow: inset 0 0 50px #00000080;
}

.webcheck-gauge-center-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.webcheck-gauge-center-cirlce {
  background-color: var(--light-bg);
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  height: 80%;
  padding-bottom: 20px;
  display: flex;
  box-shadow: inset 0 30px 20px -6px #00000080;
}

.webcheck-gauge-score {
  color: var(--text-color);
  font-size: 22px;
  line-height: 24px;
}

.webcheck-gauge-score.large {
  color: var(--primary);
  font-size: 50px;
  line-height: 50px;
}

.webcheck-stats-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
}

.webcheck-main-stats {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  box-shadow: 0 0 20px #0003;
}

.webcheck-stat-website {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
}

.webcheck-stat-text {
  font-size: 16px;
}

.webcheck-stat-text-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.webcheck-stat-bar-wrapper {
  background-color: var(--light-gray);
  border-radius: 20px;
  width: 200px;
  height: 20px;
  display: flex;
}

.webcheck-stat-bar-fill {
  background-color: var(--primary);
  border-radius: 20px;
  width: 20%;
  height: 20px;
}

.webcheck-stat-nav {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--text-color);
  border-radius: 20px;
  padding: 0 40px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px #0009;
}

.webcheck-stat-nav-link-icon {
  color: var(--primary);
  margin-right: 10px;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 25px;
  line-height: 30px;
}

.webcheck-stat-nav-link {
  color: var(--light-bg);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  transition: all .2s;
  display: flex;
}

.webcheck-stat-nav-link:hover, .webcheck-stat-nav-link.selected {
  box-shadow: inset 0 -13px 0 -10px var(--primary);
}

.webcheck-stat-block-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  min-width: 700px;
  max-width: 80%;
  padding: 20px;
  display: flex;
}

.webcheck-stat-block-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
}

.webcheck-stat-block-subtitle {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.webcheck-stat-block-text {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.webcheck-stat-block-text-wrapper {
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px #0003;
}

.webcheck-stat-block-text-wrapper.fail {
  background-color: #ffdae7;
}

.webcheck-stat-block-score-wrapper {
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.webcheck-stat-block-text-pass-score {
  background-color: var(--green);
  color: var(--light-bg);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  padding: 2.5px 5px;
  line-height: 16px;
  display: flex;
}

.webcheck-stat-block-score-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.webcheck-stat-block-text-fail-score {
  background-color: var(--red);
  color: var(--light-bg);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  padding: 2.5px 5px;
  line-height: 16px;
  display: flex;
}

.webcheck-stat-detail-wrapper {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-radius: 8px;
  flex-flow: column;
  justify-content: space-between;
  margin-top: 10px;
  display: flex;
  overflow: hidden;
}

.webcheck-stat-name {
  background-color: var(--text-color);
  color: var(--light-bg);
  margin-bottom: 0;
  padding: 5px 10px;
}

.webcheck-stat-value {
  border-bottom: 1px solid var(--light-gray);
  background-color: var(--light-gray);
  width: 100%;
  padding: 5px;
  overflow: auto;
}

.webcheck-scanning-url {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.webcheck-detail-row {
  justify-content: space-between;
  display: flex;
}

.webcheck-stat-column-head-text {
  background-color: var(--primary);
  color: var(--light-bg);
  width: 100%;
  margin-bottom: 0;
  padding: 5px 10px;
}

.webcheck-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 10px;
  display: flex;
}

.webcheck-footer-text {
  text-align: center;
  max-width: 500px;
}

.webcheck-contact-us-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--blue);
  color: var(--light-bg);
  cursor: pointer;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  font-size: 16px;
  display: flex;
  position: fixed;
  inset: auto 20px 50px auto;
}

.webcheck-contact-us-btn-text {
  font-weight: 400;
}

.webcheck-contact-us-btn-text.icon {
  padding-top: 5px;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 25px;
  font-weight: 300;
}

.contact-wrapper {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #b4b4b4f2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.contact-wrapper.hidden {
  display: none;
}

.webcheck-contact-form-wrapper {
  background-color: var(--light-bg);
  border-radius: 8px;
  min-width: 500px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.webcheck-contact-form-title {
  font-size: 18px;
  line-height: 25px;
}

.webcheck-contact-form-btn {
  background-color: var(--primary);
  border-radius: 8px;
  width: 100%;
}

.webcheck-contact-form-subtitle {
  margin-bottom: 20px;
}

.webcheck-contact-input {
  resize: vertical;
  border-radius: 8px;
}

.webcheck-contact-input.text-area {
  min-height: 100px;
}

.webcheck-contact-form-close-btn {
  cursor: pointer;
  padding: 10px;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 20px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.webcheck-contact-done-wrapper {
  background-color: var(--light-bg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.webcheck-contact-done-wrapper.hidden {
  display: none;
}

.webcheck-form-sent-title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
}

.webcheck-form-sent-title.icon {
  color: var(--green);
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 80px;
  font-weight: 100;
  line-height: 90px;
}

.webcheck-contact-form-finish-send-btn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--text-color);
  color: var(--light-bg);
  cursor: pointer;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 5px 15px;
  font-size: 16px;
  display: flex;
}

.text-block-2 {
  text-align: center;
  width: 70%;
}

.app-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  display: flex;
}

.input {
  border-radius: 8px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .side-panel {
    width: 100%;
    position: fixed;
    inset: 0%;
  }

  .side-panel.hidden {
    display: none;
  }

  .message-input-action-button.active {
    color: #44d0ff;
    -webkit-text-stroke-color: var(--blue);
    text-shadow: 0 0 8px #44d0ff66;
  }

  .button-icon.back {
    color: var(--primary);
    padding: 5px;
    font-size: 30px;
    font-weight: 400;
  }

  .nav {
    display: none;
  }

  .nav.bottom {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: relative;
    box-shadow: 0 -2px 8px #0003;
  }

  .chat-page {
    position: relative;
  }

  .nav-usrename-wrapper {
    display: none;
  }

  .nav-action-button.menu {
    color: var(--primary);
    padding-left: 5px;
    padding-right: 5px;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    display: block;
  }

  .panel-actions-wrapper.back {
    display: block;
  }

  .back-button-wrapper.back {
    background-color: #fff0;
    justify-content: flex-start;
    align-items: center;
  }

  .message-input-action-button-wrapper {
    position: relative;
  }

  .premium-cunt {
    font-family: Lato, sans-serif;
    font-size: 9px;
    line-height: 10px;
    position: absolute;
    inset: auto -5px 0% auto;
  }

  .webcheck-stat-block-text {
    margin-bottom: 20px;
  }

  .webcheck-stat-block-text-pass-score, .webcheck-stat-block-text-fail-score {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .user-message, .model-message {
    font-size: .8rem;
  }

  .nav-action-button.menu {
    font-size: 20px;
    line-height: 25px;
  }

  .message-action-button {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .webcheck-body {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bold-text {
    font-size: 16px;
    line-height: 20px;
  }

  .webcheck-form {
    flex-flow: column;
  }

  .webcheck-form-block {
    width: 400px;
  }

  .webcheck-gauge-wrapper {
    width: 300px;
    height: 150px;
  }

  .webcheck-gauge-outer {
    height: 150px;
  }

  .webcheck-gauge-outer-inner {
    height: 150px;
    transform: rotate(26deg);
  }

  .webcheck-gauge-score {
    font-size: 18px;
    line-height: 20px;
  }

  .webcheck-gauge-score.large {
    font-size: 30px;
    line-height: 30px;
  }

  .webcheck-main-stats {
    padding: 20px;
  }

  .webcheck-stat-text-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .webcheck-stat-bar-wrapper {
    width: 150px;
    height: 10px;
  }

  .webcheck-stat-bar-fill {
    height: 10px;
  }

  .webcheck-stat-nav {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .webcheck-stat-nav-link-icon {
    margin-right: 0;
  }

  .webcheck-stat-nav-link {
    font-size: 16px;
  }

  .webcheck-stat-block-wrapper {
    min-width: auto;
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .webcheck-contact-form-wrapper {
    width: 95%;
    min-width: auto;
  }

  .text-block-2 {
    width: 80%;
  }
}

@media screen and (max-width: 479px) {
  .webcheck-form-block {
    width: 300px;
  }

  .webcheck-stats-wrapper {
    padding-bottom: 30px;
  }

  .webcheck-main-stats {
    width: 100%;
  }

  .webcheck-stat-text-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
  }

  .webcheck-stat-bar-wrapper {
    width: 100%;
  }

  .webcheck-stat-nav {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .webcheck-stat-nav-link-icon {
    color: var(--light-bg);
  }

  .webcheck-stat-nav-link-text {
    display: none;
  }

  .webcheck-stat-block-wrapper {
    max-width: 100%;
  }

  .webcheck-stat-block-text {
    height: 100%;
    overflow: auto;
  }

  .webcheck-stat-value {
    overflow: auto;
  }

  .webcheck-form-sent-title.icon {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .text-block-2 {
    width: 90%;
  }
}

#w-node-cc7ff687-2004-7870-e5fe-d682d5e04bdc-2e713b89 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-cc7ff687-2004-7870-e5fe-d682d5e04be0-2e713b89 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-cc7ff687-2004-7870-e5fe-d682d5e04be3-2e713b89 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-b972e4b7-86a3-f25f-f09d-f272b3f36787-5e9519e5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9f1014c9-fd41-ee08-f43a-303db8f73dde-5e9519e5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2e510fea-269b-2bc5-f355-c3be7fa366c7-5e9519e5 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_2f776bbf-efde-96a2-30f3-5bdb4432f322-5e9519e5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e1c3ecf2-42e9-6188-af52-cc9d6d7adba9-5e9519e5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e1c3ecf2-42e9-6188-af52-cc9d6d7adbad-5e9519e5 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-e1c3ecf2-42e9-6188-af52-cc9d6d7adbb0-5e9519e5 {
  grid-area: 2 / 1 / 3 / 2;
}


