/* =====================================================
Template Name   : Skychat
Description     : Chat App HTML5 Template
Author          : Themesland
Version         : 1.0
======================================================= */
/* =====================================================
Table of contents
=======================================================

1. Google fonts
2. Variables
3. Generals css
4. Margin & padding
5. Bs custom css
6. Form css
7. Theme button
8. Main layout css
9. Avatar css
10. Status css
11. Side menu css
12. Side menu tab css
13. User status css
14. Scrollbar wrap css
15. Typing loader css
16. Chat css
17. Group css
18. Contact css
19. Notification css
20. Profile css
21. Settings css
22. Help css
23. Layout content css
24. Chat start css
25. Chat single css
26. Search css
27. Auth css

======================================================= */
/* =================
1. Google fonts
=================== */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

/* =================
2. Variables
=================== */
:root {
  --body-font: var(--bs-body-font-family);
  --body-font-weight: 300;

  /* Add this line */
  --body-text-color: #15181a;
  --body-heading-color: #293951;
  --body-bg: #ffffff;
  --theme-color: #6e9871;
  --theme-color-light: rgba(3, 189, 157, 0.08);
  --theme-bg: #ffffff;
  --theme-bg2: #ccced7;
  --theme-bg3: #15181a;
  --theme-bg-light: #f1f6fb;
  --theme-bg-light2: #e6ebf5;
  --color-primary: #7380ec;
  --color-danger: #ff7782;
  --color-warning: #ffbb55;
  --color-success: #38daa8;
  --color-white: #ffffff;
  --color-dark: #293951;
  --color-info-dark: #7d8da1;
  --color-info-light: #dce1eb;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.12);
  --border-white-color2: rgba(255, 255, 255, 0.07);
  --primary-border-color: #bdbdbd;
  --primary-box-shadow-color: #b0bbb1;
  --primary-bg-color: #ffffff;
  --primary-text-color: #000000;
  --secondary-bg-color: #67856a;
  --secondary-text-color: #b0bbb1;
  --tertiary-text-color: #67856a;
  --text-color-selected: rgb(69, 130, 68);
  --text-color-unselected: rgb(209, 209, 209);
  --text-color-unselected-green: rgba(82, 142, 103, 0.55);

  /* --primary-font-family: "Figtree", sans-serif; */
  --primary-font-family: var(--bs-body-font-family);
  --primary-button-disabled-color: #ccc;
  --primary-outline-color: #b0bbb1;
  --primary-slider-color: #b0bbb1;
  --primary-border-color: #000000;
  --primary-selected-btn-color: #b0bbb1;
  --primary-border-radius: 15px;
  --primary-box-shadow: 0px 0 10px #b0bbb1;
  --primary-slider-thumb-color: #1d5181;
}

/* ================= 
3. Generals css
=================== */
body {
  margin: 0;
  width: 100%;
  height: 100vh;
  font-style: normal;
  font-weight: var(--body-font-weight);
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: var(--body-bg);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

.div-with-bullets ul {
  list-style-type: disc;

  /* This will add bullet points */
  padding-left: 1vw;

  /* Add padding to align bullets properly */
  margin-bottom: 1vh;
}

.div-with-bullets ul li {
  margin-top: 1vh;
}

.bold-start-of-bullet {
  font-weight: 900;
  color: #143131;
}

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

img {
  display: block;
  width: 200px;
  height: 200px;
}

.chosenCoachFieldStyles {
  color: var(--body-heading-color);
  font-weight: 500;
  font-family: var(--body-font);
  margin: 0px;
}

h1 {
  font-size: 40px;
  font-family: var(--primary-font-family);
  font-weight: 300;
}

h2 {
  font-size: 25px;
  font-family: var(--primary-font-family);
  font-weight: 300;
  color: var(--primary-text-color);
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
  font-family: var(--primary-font-family);
  font-weight: 300;
}

h6 {
  font-size: 18px;
}

small {
  font-size: 14px;
}

p {
  margin: 0;
}

/* ====================
4. Margin & padding
====================== */
.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 100px 0;
}

.py-110 {
  padding: 110px 0;
}

.py-120 {
  padding: 120px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-120 {
  margin: 120px 0;
}

/* =================
5. Bs custom css
=================== */
/* bs color */
.text-muted {
  color: var(--color-info-dark) !important;
}

.primary {
  color: var(--color-primary) !important;
}

.danger {
  color: var(--color-danger) !important;
}

.success {
  color: var(--color-success) !important;
}

.warning {
  color: var(--color-warning) !important;
}

.theme-bg-primary {
  background: var(--color-primary) !important;
}

.theme-bg-danger {
  background: var(--color-danger) !important;
}

.theme-bg-success {
  background: var(--color-success) !important;
}

.theme-bg-warning {
  background: var(--color-warning) !important;
}

/* bs dropdown menu */
.teammate-dropdown-menu {
  padding: 12px;
  font-family: var(--primary-font-family);
}

.dropdown-menu .dropdown-item {
  border-radius: 15px;
  padding: 8px 12px;
  color: var(--primary-text-color);
  cursor: pointer;
}

.dropdown-menu .dropdown-item:hover {
  color: var(--theme-color);
  background: var(--theme-color-light);
}

.dropdown-menu .dropdown-item i {
  margin-right: 8px;
}

.dropdown-divider {
  border-color: var(--border-info-color);
}

/* tooltip */
.tooltip-inner {
  background: var(--theme-color);
  border-radius: 50px;
  padding: 2px 10px 4px 10px;
  font-size: 14px;
  font-weight: 600;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  left: -2.5px !important;
  border-left-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  right: -2.5px !important;
  border-right-color: var(--theme-color) !important;
}

.tooltip.show {
  opacity: 1;
}

/* modal */
.roleplay-modal-content {
  position: relative;
  background: var(--primary-bg-color);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  border: 0 solid #000000;
}

.coach-customization-modal-content {
  position: relative;
  background: var(--primary-bg-color);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  border: 0 solid #000000;
}

.endsession-modal-content {
  position: relative;
  background: var(--primary-bg-color);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  border: 0 solid #000000;
}

.roleplay-modal-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr 0.5fr;
  grid-template-rows: auto minmax(30px, auto) 1fr 50px auto minmax(30px, auto) 1fr 50px;
  grid-template-areas: "question question question question question" ". rolePlayRange rolePlayRange rolePlayRange ." "lowerEnd lowerEnd . upperEnd upperEnd" ". . . . ." "question2 question2 question2 question2 question2" ". rolePlayRange2 rolePlayRange2 rolePlayRange2 ." "lowerEnd2 lowerEnd2 . upperEnd2 upperEnd2" ". . . . .";
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.modal-content .roleplay-btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  font-size: 20px;
  border: none;
  box-shadow: none;
  border-radius: 50%;
  z-index: 1;
  font-variant: normal;
}

.modal-content .btn-close:hover {
  background: #285f60;
}

.modal-body {
  padding: 30px;
  background-color: var(--primary-bg-color);
  border-radius: 10px;
}

.coach-customization-modal-body {
  padding: 30px;
  background-color: var(--primary-bg-color);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  width: 60%;
}

.roleplay-modal-title {
  color: #ffffff;
  font-family: var(--primary-font-family);
}

.modal-backdrop.show {
  opacity: 0.8;

  /* Increase this value to darken more */
}

.modal-dialog {
  width: 80%;
  max-width: 1200px;
}

.coach-customization-modal-dialog {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.roleplay-modal-body {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
}

.roleplay-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roleplay-modal-overall-container {
  display: block;
}

.roleplay-modal-header {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
}

/* accordion */
.accordion-item {
  background: transparent;
  border: none;
}

.accordion-header {
  border-top: 1px solid var(--border-info-color);
}

.accordion-item:first-child .accordion-header {
  border-top: 0;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--body-text-color);
  box-shadow: none;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-button::after {
  content: "\f105";
  background: none !important;
  color: var(--body-text-color);
  font-family: "Font Awesome 6 pro";
  width: unset;
  height: unset;
  margin-right: 3px;
}

.accordion-button:not(.collapsed)::after {
  content: "\f105";
  transform: rotate(90deg);
}

.accordion-flush .accordion-button,
.accordion-flush .accordion-body,
.accordion-flush .accordion-header {
  padding-left: 0;
  padding-right: 0;
}

.accordion-body {
  color: var(--body-text-color);
  border-top: 1px solid var(--border-info-color);
}

.accordion-text .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-text .accordion-button::after {
  display: none;
}

/* ===================
6. Form css
===================== */
.form-group .form-control,
.input-group .form-control {
  border-radius: 12px;
  background-color: var(--theme-bg3);
  color: var(--body-text-color);
  border: none;
  box-shadow: none;
  font-weight: 300;
  resize: none;
  font-size: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;

  /* overflow: hidden; Hide scroll bar */
}

.form-group .form-control::placeholder,
.input-group .form-control::placeholder {
  color: var(--body-text-color);
}

.input-group-text {
  background: var(--theme-bg3);
  border-radius: 12px;
  padding-right: 18px;
  font-size: 18px;
  color: var(--body-text-color);
  border: none;
}

.form-check-input:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.25rem rgba(3, 189, 157, 0.3);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.form-switch .form-check-input {
  border-radius: 50px !important;
  background-color: transparent;
  border-color: var(--border-info-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='silver'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
  border-color: var(--theme-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='silver'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.file-input {
  display: none;
}

.input-group {
  border: 2px solid var(--theme-bg3);
  border-radius: 14px;
}

.input-group:focus-within {
  color: var(--bs-body-color);
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.25rem rgba(3, 189, 157, 0.3);
  outline: 0;
}

/* ====================
7. Theme button
====================== */
.theme-btn {
  position: relative;
  font-size: 16px;
  background: var(--theme-color);
  color: var(--color-white);
  padding: 10px 16px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--color-danger);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
  vertical-align: middle;
}

.theme-btn span {
  margin-right: 5px;
}

/* =================
8. Main layout css
=================== */
.main-layout {
  position: relative;
  height: 100%;
  width: 100%;
}

.layout-wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;

  /* padding-top: 10px */
}

/* ===================
9. Avatar css
===================== */
.avatar {
  height: 45px;
  width: 45px;
  margin-left: 10px;
  margin-top: 30px;
}

.chat-window-user-initial-box {
  padding: 10px;
  box-sizing: border-box;
  flex: 0 0 30%;
  height: 100%;
  margin-left: -12px;
}

.avatar-text {
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  text-transform: uppercase;
}

.avatar-group {
  display: flex;
  direction: rtl;
}

.avatar-group .avatar {
  width: 35px;
  height: 35px;
  border: 3px solid var(--color-white);
  margin-left: -13px;
  border-radius: 50%;
}

.avatar-group .avatar-text {
  font-size: 13px;
}

/* =================
10. Status css
=================== */
.status {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  border-radius: 50px;
  border: 3px solid var(--theme-bg3);
}

.status.online {
  background: var(--theme-color);
}

.status.away {
  background: var(--color-warning);
}

.status.busy {
  background: var(--color-danger);
}

.status.offline {
  background: var(--color-info-dark);
}

/* =================
11. Side menu css
=================== */
.side-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 75px;
  height: 100%;
  text-align: center;
  border-left: 5px solid var(--theme-color);
  z-index: 10;
  align-self: center;
  justify-content: center;

  /* background-color: #15181a */
}

.side-menu .logo img {
  width: 55px;
}

.side-menu .account .avatar {
  width: 45px;
  height: 45px;
  margin: 0 auto;
}

.side-menu .nav-pills .nav-link {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  color: var(--color-info-dark);
  border-radius: 0;
  padding: 0px;
  position: relative;
  z-index: 20;

  /* Higher than the side-menu z-index */
}

.side-menu .nav-pills .nav-link .nav-active-shape {
  position: absolute;
  left: -20px;
  top: 0;
  right: 0px;
  bottom: 0;
  background: var(--theme-color);
  border-radius: 0 50px 50px 0;
  display: none;
  z-index: 30;

  /* Highest z-index to ensure visibility */
}

.side-menu .nav-pills .nav-link .nav-active-shape::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50px;

  /* background: var(--body-bg); */
  left: 10px;
  top: -35px;
  box-shadow: -15px 15px 0 var(--theme-color);
}

.side-menu .nav-pills .nav-link .nav-active-shape::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50px;

  /* background: var(--body-bg); */
  left: 10px;
  bottom: -35px;
  box-shadow: -15px -15px 0 var(--theme-color);
  z-index: auto;
}

.side-menu .nav-pills .nav-link.active {
  color: var(--color-white);
  background: transparent;
  margin-top: 10px;
  margin-bottom: 10px;
}

.side-menu .nav-pills .nav-link.active .nav-active-shape {
  display: block;
}

.side-menu .nav-pills .nav-item {
  margin: 4px 0;
}

.side-menu .account .color-mode {
  margin-bottom: 30px;
}

.side-menu .account .color-mode a {
  font-size: 22px;
  color: var(--color-info-dark);
  padding: 0rem 1rem;
}

.side-menu .account .color-mode .dark-btn {
  display: none;
}

.new-session-box {
  background-color: #285f60;

  /* Your preferred shade of green */
  color: white;
  border-radius: 10px;

  /* Adjust for desired roundness */
  padding: 5px 10px;

  /* Top & bottom | Left & right */
  margin-left: 50px;
  font-size: 0.8em;

  /* Adjust as needed */
  cursor: pointer;

  /* If it's clickable */
  /* Add this if you want it to look like a button */
  display: inline-block;
  text-align: center;
}

.side-menu .notification-alert {
  position: relative;
}

.side-menu .notification-alert::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 8px;
  height: 8px;
  background: var(--color-danger);
  border-radius: 50px;
}

@media all and (max-width: 1365px) {
  .side-menu .nav-brand {
    margin-bottom: 25px;
  }

  .side-menu .account .color-mode {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 991px) {
  .side-menu {
    max-width: 55px;
    padding: 12px 0;
  }

  .side-menu .nav-brand {
    margin-bottom: 20px;
  }

  .side-menu .logo img {
    width: 45px;
  }

  .side-menu .nav-pills .nav-link {
    width: 40px;
    height: 44px;
    line-height: 42px;
  }

  .side-menu .nav-pills .nav-link .nav-active-shape::before,
  .side-menu .nav-pills .nav-link .nav-active-shape::after {
    left: 15px;
  }

  .side-menu .account .avatar {
    width: 38px;
  }

  .side-menu .account .avatar .status {
    bottom: 5px;
  }
}

/* ===================
12. Side menu tab css
===================== */
.side-menu-tab {
  width: 100%;
  height: 95%;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-self: center;
}

.side-menu--profile-content {
  height: 100vh;

  /* overflow-y: auto */
  display: flex;
  flex-direction: column;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0px 25px 0px;
}

.side-menu-content .title {
  font-size: 20px;
  color: #f2eeee;
}

.side-menu-content .sub-title {
  font-size: 17px;
  margin: 25px 100px 15px 100px;
  color: #fbf7f7;
}

.new-word {
  font-size: 17px;
  color: green;
  margin-left: 200px;
}

.side-menu-content .sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0px 15px 0px;
}

.side-menu-content .sub-header .sub-title {
  margin: 0;
}

.side-menu-content .sub-header .dropdown a {
  color: #f9f8f8;
}

@media (min-width: 1280px) {
  .side-menu-content .sub-header .dropdown a {
    font-family: var(--primary-font-family);
  }
}

.side-menu-content .sub-header .dropdown-item:hover {
  color: var(--theme-color);
}

@media all and (max-width: 1279px) {
  .side-menu-tab {
    width: 100%;
    height: 100%;
  }
}

/* ===================
13. User status css
===================== */
.user-status {
  position: relative;
}

.status-item {
  width: 100%;
  text-align: center;
}

.status-item .avatar {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.status-item .avatar-name {
  font-size: 14px;
  color: var(--body-text-color);
  margin-top: 8px;
  font-weight: 400;
}

/* =====================
14. Scrollbar wrap css
======================= */
.personalization-scrollbar-wrap {
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 95vh;
  width: 100%;
}

.scrollbar-wrap::-webkit-scrollbar {
}

/* ===================
15. Typing loader css
===================== */
.typing-loader .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: -1px;
  background: var(--theme-color);
  -webkit-animation: wave 1.3s linear infinite;
  animation: wave 1.3s linear infinite;
  opacity: 0.6;
}

.typing-loader .dot:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.typing-loader .dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

/* ===================
16. Chat css
===================== */
.chat-list {
  /* position: relative */
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
  width: 15%;
  padding: 10px;
  height: 90%;
  display: flex;
  flex-direction: column;
  margin-right: 0.5vw;
}

.chat-list-wrap {
  padding: 5px 5px 20px 5px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;

  /* flex-grow: 1 */
}

.chat-list-item {
  display: block;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid rgba(127, 171, 128, 0.67);
  background-color: rgba(252, 251, 255, 0);
}

.chat-list-item.selected {
  border: 2px solid #12701c;
  box-shadow: 0 0 0 0.1rem rgba(3, 189, 157, 0.3);
}

.chat-list-item:hover {
  color: var(--bs-body-color);
  border-color: var(--theme-color);

  /* outline: 0; */
  box-shadow: 0 0 0 0.25rem rgba(3, 189, 157, 0.3);
}

.chat-list-content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  /* align-items: center */
  /* gap: 14px */
}

.chat-list-info .chat-list-title {
  flex: 1;
  overflow-x: hidden;
  white-space: normal;
}

.chat-list-title .name {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.98);
}

.chat-list-title .time {
  font-size: 13px;
  color: var(--body-text-color);
}

.chat-list-message {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* gap: 10px */
}

.chat-list-message .message-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #b0bbb1;
  font-size: 15px;
}

.chat-list-message .message-text i {
  font-size: 15px;
  margin-right: 5px;
}

.chat-list-message .message-count {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 7px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  visibility: hidden;
}

.chat-list-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-info-color);
}

.chat-list-group .group-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.chat-list-group .group-avatar .avatar {
  width: 35px;
  height: 35px;
}

.chat-list-group .group-info .group-name {
  font-size: 16px;
}

/* ===================
17. Group css
===================== */
.group-menu-tab {
  margin-top: 30px;
}

.group-menu-tab .nav {
  background: var(--theme-bg3);
  padding: 8px;
  border-radius: 12px;
}

.group-menu-tab .nav .nav-link {
  color: var(--body-text-color);
  border-radius: 10px;
}

.group-menu-tab .nav .nav-link.active {
  background: var(--theme-color);
  color: var(--color-white);
}

.group-list .group-list-wrap {
  padding-bottom: 25px;
}

.group-list .item {
  padding: 12px;
  background: var(--theme-bg3);
  border-radius: 15px;
  margin-bottom: 15px;
}

.group-list .item .content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.group-list .item .group-avatar .avatar-text {
  font-size: 20px;
}

.group-list .item .info {
  flex: 1;
}

.group-list .item .info .title {
  font-size: 17px;
  margin-bottom: 3px;
}

.group-list .item .info .text {
  font-size: 16px;
}

.group-list .item .info .title a {
  color: var(--body-heading-color);
}

.group-list .item .info .title a:hover {
  color: var(--theme-color);
  transition: var(--transition);
}

.group-list .item .action .icon {
  font-size: 16px;
  border: none;
  background: transparent;
  color: var(--body-text-color);
}

.group-list .item .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  padding-top: 10px;
  margin-top: 15px;
}

.group-list .item .bottom-info .group-status {
  color: var(--body-text-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.group-list .item .bottom-info .group-status i {
  font-size: 7px;
  color: var(--theme-color);
}

.group-create .group-list-wrap {
  padding-bottom: 45px;
}

.group-list-wrap .accordion {
  background: var(--theme-bg3);
  padding: 5px 25px;
  border-radius: 15px;
}

.group-list-wrap .accordion-button h6 {
  font-size: 18px;
  margin-bottom: 6px;
}

.group-list-wrap .accordion-button p {
  font-weight: normal;
}

.group-form .input-group {
  margin-bottom: 15px;
}

.group-form .form-control {
  background-color: var(--theme-bg);
}

.group-form .input-group-text {
  background-color: var(--theme-bg);
}

.group-btn .theme-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
}

.group-btn .theme-btn::before {
  width: 430px;
  height: 430px;
}

.group-create .contact-list .item {
  background: var(--theme-bg);
}

.group-create .contact-list .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 50px !important;
  background-color: var(--theme-bg3);
}

.group-create .contact-list .form-check-input:checked {
  background-color: var(--theme-color);
}

.group-form .group-profile-img {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto 30px auto;
  border-radius: 50px;
  padding: 4px;
  border: 2px dashed var(--theme-color);
}

.group-form .group-profile-img img {
  border-radius: 50%;
}

.group-form .group-profile-img button {
  position: absolute;
  right: -3px;
  bottom: -3px;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 14px;
  border: 3px solid var(--color-white);
  width: 32px;
  height: 32px;
  line-height: 25px;
  text-align: center;
}

.group-form .avatar-text {
  font-size: 28px;
}

/* ===================
18. Contact css
===================== */
.contact-list {
  position: relative;
  margin-top: 20px;
}

.contact-list-wrap {
  padding-bottom: 30px;
}

.contact-list .label {
  margin: 20px 0;
  color: var(--body-text-color);
  text-transform: uppercase;
}

.contact-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--theme-bg3);
  border-radius: 15px;
  margin-bottom: 15px;
}

.contact-list .item .info {
  flex: 1;
}

.contact-list .item .info .title {
  font-size: 16px;
  margin-bottom: 3px;
}

.contact-list .item .info .text {
  font-size: 15px;
}

.contact-list .item .info .title a {
  color: var(--body-heading-color);
}

.contact-list .item .info .title a:hover {
  color: var(--theme-color);
  transition: var(--transition);
}

.contact-list .item .action .icon {
  font-size: 16px;
  border: none;
  background: transparent;
  color: var(--body-text-color);
}

.contact-invite .theme-btn {
  padding: 6px 14px 9px 14px;
}

.contact-invite-info {
  position: relative;
}

.contact-invite-header {
  text-align: center;
}

.contact-invite-header h5 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-invite-header .avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  border: 3px solid var(--theme-bg);
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  position: relative;
}

.contact-invite-header .avatar::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border: 2px dashed var(--theme-color);
  border-radius: 50%;
}

.contact-invite-header .avatar-text {
  font-size: 40px;
}

.contact-invite-form {
  margin-top: 25px;
}

.contact-invite-form .input-group-text,
.contact-invite-form .form-control {
  background-color: var(--theme-bg2);
}

.contact-invite-form .input-group {
  margin-bottom: 20px;
}

.contact-invite-form .theme-btn {
  padding: 12px 20px;
  margin-top: 15px;
}

.contact-invite-form .theme-btn i {
  margin-left: 10px;
}

/* ===================
19. Notification css
===================== */
.notification .side-menu-header .badge {
  background: var(--color-danger);
  font-size: 11px;
  vertical-align: middle;
}

.notification .side-menu-header a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-text-color);
  transition: var(--transition);
}

.notification .side-menu-header a:hover {
  color: var(--color-danger);
}

.notification .side-menu-header .dropdown-item:hover {
  background: rgba(255, 119, 130, 0.08);
}

.notification-list {
  margin-top: 15px;
}

.notification-list-wrap {
  padding-bottom: 25px;
}

.notification-list .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--body-text-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0;
}

.notification-list .label a {
  color: var(--body-text-color);
  transition: var(--transition);
}

.notification-list .label a:hover {
  color: var(--color-danger);
}

.notification-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--theme-bg3);
  border-radius: 15px;
  margin-bottom: 20px;
}

.notification-list .item .info {
  flex: 1;
}

.notification-list .item .info .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.notification-list .item .info .title h6 {
  font-size: 16px;
  color: var(--body-heading-color);
}

.notification-list .item .info .title .time {
  font-size: 12px;
  color: var(--body-text-color);
  font-weight: 500;
}

.notification-list .item .info .title a {
  font-size: 16px;
  color: var(--body-heading-color);
}

.notification-list .item .info .title a:hover {
  color: var(--theme-color);
  transition: var(--transition);
}

.notification-list .item .info .text {
  font-size: 15px;
}

.notification-list .item .info .body-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-list .item .action .icon {
  font-size: 16px;
  border: none;
  background: transparent;
  color: var(--body-text-color);
  margin-left: 15px;
}

.notification-list .bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-info-color);
  padding-top: 12px;
  margin-top: 10px;
}

.notification-list .bottom .theme-btn {
  padding: 6px 20px;
  font-size: 14px;
  border-radius: 50px;
  flex: 1;
}

.notification-list .bottom .theme-btn:first-child {
  background: var(--color-danger);
}

.notification-list .bottom .theme-btn:first-child::before {
  background: var(--theme-color);
}

/* ===================
20. Profile css
===================== */
/* ===================
21. Settings css
===================== */
.setting-content {
  margin-top: 15px;
}

.setting-wrap {
  padding-bottom: 45px;
}

.setting-content .label {
  margin: 20px 0;
}

.setting-content .item {
  background: var(--theme-bg3);
  border-radius: 15px;
  padding: 5px 24px;
}

.setting-content .accordion-header h6 {
  font-size: 16px;
  margin-bottom: 5px;
}

.setting-content .accordion-header p {
  font-size: 16px;
  font-weight: 400;
}

.setting-content .group-form .theme-btn::before {
  width: 380px;
  height: 380px;
}

.setting-content .storage-progress {
  margin: 10px 0;
}

.setting-content .storage-progress .progress {
  background: var(--theme-bg);
  border-radius: 50px;
}

.setting-content .storage-progress .progress-bar {
  background: var(--theme-color);
}

.setting-content .storage-progress-text {
  margin-bottom: 15px;
}

.setting-content .storage-progress-text span {
  color: var(--color-danger);
  font-weight: 500;
}

/* ===================
22. Help css
===================== */
.help-content {
  margin-top: 20px;
}

.help-wrap {
  padding-bottom: 45px;
}

.help-content .label {
  margin: 20px 0;
}

.help-content .item {
  background: var(--theme-bg3);
  border-radius: 15px;
  padding: 5px 24px;
}

.help-content .accordion-header h6 {
  font-size: 16px;
  margin-bottom: 5px;
}

.help-content .accordion-header p {
  font-size: 16px;
  font-weight: 400;
}

.help-content .group-form .theme-btn::before {
  width: 380px;
  height: 380px;
}

.help-content .faq-list li {
  border-bottom: 1px solid var(--border-info-color);
  padding: 15px 0;
}

.help-content .faq-list li:last-child {
  border-bottom: none;
}

.help-content .faq-list li h6 {
  font-size: 17px;
  margin-bottom: 6px;
}

/* ===================
23. Layout content css
===================== */
.layout-content {
  flex: 1;
}

/* ===================
24. Chat start css
===================== */
.chat-start {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.chat-start-info {
  text-align: center;
}

.chat-start-info .avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.chat-start-info h5 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.chat-start-info .status {
  width: 16px;
  height: 16px;
  right: 5px;
  bottom: 5px;
}

/* ===================
25. Chat single css
===================== */
.chat-box {
  position: relative;
  background-color: var(--primary-bg-color);
  grid-area: coachingsession;
  height: 100vh;
}

.chat-box .chat-wrap {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0 5px;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-info-color);
  grid-area: coachingsesssionheader;
}

.chat-header-convos {
  display: flex;
  border-bottom: 1px solid var(--border-info-color);
  width: 99%;
  flex-direction: column;
  padding-left: 10px;
  justify-content: center;
  padding-bottom: 10px;
}

.layout-content-btn {
  display: none;
}

.layout-content-btn button {
  width: 35px;
  height: 35px;
  line-height: 30px;
  background: transparent;
  border: 1px solid var(--border-info-color);
  color: var(--body-text-color);
  font-size: 18px;
  border-radius: 50px;
  margin-right: 10px;
}

.layout-content-btn button:hover {
  background: var(--color-danger);
  color: var(--color-white);
}

.chat-user .avatar {
  width: 45px;
  height: 45px;
}

.chat-user .info span {
  color: var(--body-text-color);
  font-size: 14px;
}

.chat-action .list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.chat-action .action-btn {
  background: transparent;
  border: none;
  color: var(--body-text-color);
}

/* .message-item {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 15px 0;
    max-width: 90%;

    /* width: 100% */
.message-wrap {
  display: flex;
  flex-direction: column;
}

.message-content + .message-content {
  margin-top: 28px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  width: 100%;
}

.message-self .message-text {
  border-radius: 15px 15px 0px 15px;
  margin-bottom: 10px;
  border: 1px solid #020202;
}

.message-item .message-text .message-time {
  position: absolute;
  top: -20px;
  font-size: 12px;
  color: #ffffff;
}

.message-self .message-text .message-time {
  display: flex;
  align-content: flex-end;
  right: 10px;

  /* Adjust this value as needed */
  position: absolute;

  /* Ensure this is set if not already included */
}

.message-item .message-action button {
  border: none;
  background: transparent;
  color: var(--body-text-color);
  font-size: 16px;
}

.message-item .message-text .attached-file {
  display: flex;
  align-items: center;
  gap: 12px;
}

.message-item .message-text .attached-file .icon {
  font-size: 20px;
  width: 43px;
  height: 43px;
  background: var(--theme-bg3);
  color: var(--theme-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.message-self .message-text .attached-file .icon {
  background: var(--color-white);
}

.message-item .message-text .attached-file .info h6 {
  font-size: 16px;
}

.message-item .message-text .attached-file .info span {
  font-size: 12px;
}

.message-item .message-text .attached-file .download {
  font-size: 20px;
  margin-left: 20px;
  color: var(--body-text-color);
}

.message-self .message-text .attached-file .info h6,
.message-self .message-text .attached-file .download {
  color: var(--color-white);
}

.message-voice audio {
  width: 250px;
}

.message-voice audio::-webkit-media-controls-time-remaining-display {
  display: none;
}

.message-voice audio::-webkit-media-controls-enclosure {
  background-color: var(--theme-bg2);
  border: 4px solid #769798;

  /* margin-left: 50px; */
  /* margin-right: auto; */
}

.message-video video {
  border-radius: 15px;
  width: 250px;
  height: auto;
}

.message-img {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.message-img .img-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  flex: 1 1 100px;
}

.message-img .img-item img {
  width: 100%;
  border-radius: 15px;
}

.message-img .img-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
  transition: var(--transition2);
}

.message-img .img-item:hover .overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.message-img .img-item .overlay a {
  color: var(--color-white);
  font-size: 20px;
}

.message-divider {
  text-align: center;
  margin: 20px 0 50px 0;
}

.chat-bottom {
  width: 95%;
  grid-area: coachingsessioninput;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-self: center;
}

.chat-bottom .chat-form {
  padding: 20px 0;
  border-top: 1px solid var(--border-info-color);
  flex: 1;
}

.chat-bottom .chat-form-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background: var(--theme-bg2);
  border-radius: 30px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 5px;
  flex: 1;
}

.chat-bottom .chat-form .form-control {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  height: 4rem;
}

.chat-bottom .chat-form button {
  background: transparent;
  color: var(--body-text-color);
  border: 1px none #000000;
  margin-right: 0.5rem;
}

.chat-bottom .chat-form .chat-window-mic-btn {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.chat-bottom .chat-form .send-btn button {
  background: #b0bbb1;
  color: var(--color-white);
  font-size: 18px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  margin-left: 5px;
}

.call-wrap {
  text-align: center;
}

.call-user .avatar {
  width: 90px;
  height: 90px;
  border: 5px solid var(--theme-bg3);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

.call-user .avatar .status {
  right: 4px;
  bottom: 4px;
}

.call-info {
  margin-top: 12px;
}

.call-info .calling {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 5px 0;
}

.call-info .calling i {
  color: var(--color-danger);
}

.call-more-action {
  margin: 25px 0;
}

.call-more-action a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: var(--theme-bg);
  color: var(--body-text-color);
  border-radius: 50px;
  margin: 5px;
  transition: var(--transition);
}

.call-wrap .call-more-action a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.call-wrap .modal-footer {
  justify-content: space-between;
  padding: 5px;
  background: var(--theme-color);
  border-top: 0;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.call-wrap .modal-footer button {
  width: 36px;
  height: 36px;
  line-height: 34px;
  margin: 0;
  border-radius: 50px;
  border: none;
  background: var(--color-white);
  color: var(--theme-color);
  box-shadow: var(--box-shadow);
}

.call-wrap .modal-footer .call-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 64px;
  height: 64px;
  line-height: 54px;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: 25px;
  border: 4px solid var(--theme-bg3);
  transform: translateX(-50%);
}

.video-call-wrap {
  position: relative;
}

.video-call-wrap img {
  border-radius: 15px;
}

.video-call .call-wrap .avatar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 15px;
  border-width: 3px;
}

.video-call .call-wrap .avatar img {
  border-radius: 10px;
}

.video-call .call-info {
  margin-top: 12px;
}

.video-call .call-time {
  margin-top: 4px;
}

.video-call .call-more-action {
  margin: 8px 0;
}

.chat-user-more.offcanvas {
  position: static;
  transition: none;
  width: 0;
  height: 100vh;
  background: var(--theme-bg);
}

.chat-user-more.offcanvas-end {
  border: none;
}

.chat-user-more.offcanvas.show {
  min-width: 400px;
}

.chat-user-more .offcanvas-header {
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border-info-color);
}

.chat-user-more .offcanvas-title {
  font-size: 20px;
}

.chat-user-more .btn-close {
  background: var(--theme-bg3);
  color: var(--body-text-color);
  font-size: 18px;
  border: 1px solid var(--border-info-color);
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  transition: var(--transition2);
  opacity: 1;
}

.chat-user-more .btn-close:hover {
  background: var(--color-danger);
  color: var(--color-white);
}

.chat-user-info .profile-wrap {
  padding-bottom: 30px;
}

.chat-user-file .chat-user-item {
  background: var(--theme-bg3);
  border-radius: 15px;
  padding: 5px 24px;
}

.chat-user-file .chat-user-item .accordion-header h6 {
  font-size: 16px;
  margin-bottom: 5px;
}

.chat-user-file .chat-user-item .accordion-header p {
  font-size: 16px;
  font-weight: 400;
}

.chat-user-file .file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-info-color);
}

.chat-user-file .file-item:last-child {
  border-bottom: none;
}

.chat-user-file .file-item .avatar {
  width: 38px;
  height: 38px;
}

.chat-user-file .file-info {
  flex: 1;
}

.chat-user-file .file-info h6 {
  font-size: 15px;
}

.chat-user-file .file-info span {
  font-size: 14px;
}

.chat-user-file .file-action button {
  background: transparent;
  border: none;
  color: var(--body-text-color);
}

.chat-user-file .contact-list .contact-list-wrap {
  padding-bottom: 0;
}

.chat-user-file .contact-list .item {
  background: var(--theme-bg);
}

@media all and (max-width: 1365px) {
  .message-img .img-item {
    flex: 1 1 80px;
  }
}

@media all and (max-width: 1279px) {
  .layout-content {
    position: fixed;
    background: var(--body-bg);
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      visibility 0.4s ease,
      transform 0.4s ease;
    order: 3;
    z-index: 3;
  }

  .layout-content.active {
    transform: translateX(0);
    visibility: visible;
  }

  .layout-content-btn {
    display: block;
  }

  .chat-user-more.offcanvas {
    position: fixed;
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }

  .chat-user-more.offcanvas.show {
    min-width: unset;
    width: 100vw;
  }

  .chat-user {
    flex: 1;
  }
}

@media all and (max-width: 766px) {
  .chat-action .user-btn,
  .chat-action .audio-call,
  .chat-action .video-call {
    display: none;
  }

  .message-wrap {
    max-width: 100%;
  }

  .chat-bottom .chat-form {
    padding: 20px 0;
  }
}

/* ===================
26. Search css
===================== */
.search-form {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 65.5px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s ease-in-out;
  background: var(--body-bg);
  padding: 6px 18px;
  z-index: 1;
}

.search-form.active {
  opacity: 1;
  visibility: visible;
}

.search-form .input-group-text,
.search-form .form-control {
  background-color: var(--theme-bg2);
}

/* ===================
27. Auth css
===================== */
.auth-area {
  background: var(--theme-bg);
}

.auth-form {
  background: var(--theme-bg3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.auth-header {
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.auth-header img {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.auth-header p {
  font-size: 18px;
}

.auth-header .avatar {
  width: 80px;
  height: 80px;
}

.auth-header .avatar-name {
  margin-top: 12px;
  margin-bottom: 6px;
}

.auth-header .avatar img {
  width: 100%;
}

.auth-form .input-group {
  margin-bottom: 20px;
}

.auth-form .input-group .form-control {
  background-color: var(--theme-bg);
  padding: 16px 20px;
}

.auth-form .input-group .input-group-text {
  background-color: var(--theme-bg);
}

.auth-form .form-check-input {
  background-color: var(--theme-bg);
}

.auth-form .form-check-input:checked {
  background-color: var(--theme-color);
}

.auth-form .form-check a {
  color: var(--theme-color);
}

.auth-form .form-check a:hover {
  color: var(--color-danger);
  transition: var(--transition);
}

.auth-form .forgot {
  color: var(--theme-color);
}

.auth-form .forgot:hover {
  color: var(--color-danger);
  transition: var(--transition);
}

.auth-form .auth-btn .theme-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
}

.auth-form .auth-btn .theme-btn::before {
  width: 380px;
  height: 380px;
  transition: var(--transition2);
}

.auth-footer {
  margin-top: 30px;
}

.auth-footer p a {
  color: var(--theme-color);
}

.auth-footer p a:hover {
  color: var(--color-danger);
  transition: var(--transition);
}

.btn-learn {
  color: #ed0d0d;
}

.btn-learn:hover {
  color: #46ae23;
}

.btngroup-learn {
  background-color: #8d0505;
}

.btngroup-learn:hover {
  background-color: #f4b9b9;
}

.learn-gridbtn {
  background-color: #a40d0d;
}

.btn-learn1 {
  background-color: #285f60;
  margin-left: 7px;
  margin-right: 6px;
  border-radius: 26px;
  border-width: 2px;
  border-color: #f8efef;
}

.btn-learn1:hover {
  background-color: #810f0f;
}

.question-coaching-style {
  color: #f5eeee;
  margin-top: 16px;
  text-align: center;
}

.grid-btn1 {
  background-color: #285f60;
  border-radius: 42px;
  height: 60px;
  width: 200px;
  margin: auto;
  flex-wrap: wrap;
  font-family: var(--primary-font-family);
}

.grid-btn1:hover {
  background-color: #97b38f;
}

.progress-bar-lg {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  background-color: #464444;
  margin-top: 224px;
}

.progress-bar-progress-so-far {
  width: 25%;
  background-color: #285f60;
}

.questions-next-button {
  width: 70px;
  height: 40px;
  font-family: var(--primary-font-family);
  color: #ffffff;
  background-color: #040404;
  text-align: right;
  top: -58px;
  margin-left: auto;
}

.questions-back-button {
  width: 70px;
  height: 40px;
  font-family: var(--primary-font-family);
  color: #ffffff;
  background-color: #040404;
  margin-right: auto;
}

.customization-back-btn {
  grid-area: 2 / 2 / 3 / 3;
  width: 75px;
  height: 30px;
  background-color: var(--primary-text-color);
  border-width: 1px;
  border-color: #f8f4f4;
  border-radius: 11px;
  color: #fbf7f7;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customization-back-btn:hover {
  background-color: #757873;
  color: #38daa8;
}

.personalization-q3-btn {
  background-color: #285f60;
  grid-area: option1;
  border-radius: 17px;
  border-width: 2px;
  border-color: #848282;
  margin: auto;
  width: 500px;
  margin-bottom: 19px;
  display: flex;
  justify-content: center;
}

.personalization-q2-btn {
  background-color: #285f60;
  grid-area: option1;
  border-radius: 17px;
  border-width: 2px;
  border-color: #848282;
  width: 240px;
  height: 75px;
  margin: auto;
}

.personalization-q1-btn {
  background-color: #285f60;
  grid-area: option1;
  border-radius: 17px;
  border-width: 2px;
  border-color: #848282;
  width: 240px;
  height: 75px;
  margin: auto;
}

.personalization-navigation {
  grid-area: newback;
  color: #f9f4f4;
  font-size: 49px;
  margin-top: auto;
  margin-bottom: auto;
}

.personalization-navigation:hover {
  color: #285f60;
}

.q1OptionExample {
  grid-area: option1example;
  margin-right: auto;
  width: 250px;
  margin-left: auto;
  font-style: italic;
}

.q1grid {
  display: grid;
  grid-template-columns:
    0.2fr 0.2fr minmax(300px, 1fr) minmax(300px, 1fr) minmax(300px, 1fr)
    0.2fr 0.2fr;
  grid-template-rows: 0.5fr auto 0.5fr 0.25fr 0.5fr 2fr minmax(75px, 1fr);
  gap: 2px;
  grid-template-areas: ". . . . . . ." ". . Customizationheader Customizationheader Customizationheader . ." ". . . . . . ." ". newback personalizationtext personalizationtext personalizationtext newnext ." ". . . . . . ." ". . option1example option2example option3example . ." ". . option1 option2 option3 . .";
}

.q3btntext {
  color: #f7f4f4;
  font-size: 20px;
  font-family: var(--primary-font-family);
  margin: auto;
}

.side-menu .nav-pills .nav-link .icon {
  position: relative;
  z-index: 40;
}

.feather-cloud-snow:before {
  content: "\e93f";
}

.form-range {
  width: 90%;
  padding: 1rem 5%;
  appearance: none;
  grid-area: rolePlayRange;
  border-color: #c5aebf;

  /* margin-bottom: 16px */
  background-color: var(--primary-bg-color);
  max-width: 100%;
}

/* Custom-styles.css */
/* Customize the thumb for WebKit browsers */
/* Customize the thumb for Mozilla browsers */
.form-range::-moz-range-thumb {
  background-color: var(--primary-bg-color);

  /* Replace with your desired color */
}

/* Customize the track for WebKit browsers */
/* Customize the thumb */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.5vh;
  height: 2.5vh;
  background-color: var(--primary-slider-thumb-color);
  border-radius: 50%;
  margin-top: -0.8vh;

  /* Adjust accordingly */
  cursor: pointer;
}

/* Customize the track */
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  background-color: var(--primary-slider-color);
  border-radius: 1rem;
}

/* Customize the thumb for Mozilla browsers */
.form-range::-moz-range-thumb {
  background-color: var(--primary-slider-thumb-color);

  /* Replace with your desired color */
}

/* Customize the thumb for IE */
.form-range::-ms-thumb {
  background-color: var(--primary-slider-thumb-color);

  /* Replace with your desired color */
}

/* Customize the thumb */
.form-range::-moz-range-thumb {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary-slider-thumb-color);
  border-radius: 50%;
  border: none;
}

/* Customize the track */
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  background-color: var(--primary-slider-color);
  border-radius: 1rem;
}

/* Customize the progress part of the track (for Firefox) */
.form-range::-moz-range-progress {
  background-color: var(--primary-slider-color);
  border-radius: 1rem 0 0 1rem;

  /* Rounded corners on the left side */
}

.slider-option {
  font-family: var(--primary-font-family);
  color: #f9f4f4;
  font-size: 20px;
  text-align: left;
}

.optionstyle {
  grid-area: q1option1;
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  font-size: 1.5vh;
  flex-wrap: wrap;
  margin-top: 0;
}

.messages-container {
  grid-area: coachingsessionmessages;
  overflow: auto;
}

.insights-lottie-box {
  width: 150px;
  height: 75px;
  margin: auto;
}

.img-convo-window {
  width: 150px;
  height: 150px;
  grid-area: coachHeadshotAndButtons;
  margin-left: 50px;
  margin-right: 50px;
}

.coach-convo-window-buttons {
  width: 40px;
  height: 40px;
  border-radius: 15px;
}

.coach-play-btn.disabled {
  background-color: var(--primary-button-disabled-color);
  pointer-events: none;

  /* Prevents clicking */
  cursor: not-allowed;

  /* Shows an indicator that the button is disabled */
}

.chat-window-send-message-btn.disableBtn {
  background-color: var(--primary-button-disabled-color);
  pointer-events: none;
  cursor: not-allowed;

  /* Prevents clicking */
}

.feather-convowindow {
  font-size: 24px;
  color: #b2b2b2;
}

.voice-window-btns-normal {
  grid-area: recordButton;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  border: 1px solid #000000;
  color: #b2b2b2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e2e2e2;
}

.usericons-convowindow:hover {
  background-color: #b0bbb1;
}

.session-img-icon {
  border-radius: 0%;
}

#coach-thinking-convoPane {
  grid-area: 2 / 2 / 3 / 3;
  max-height: 200px;

  /* Adjust based on expected content size */
  overflow: hidden;

  /* Optional, to manage content spillover */
}

.lottie-convoPane-box {
  height: 100px;
}

.recording-in-action {
  background-color: rgb(162, 69, 69);
  color: white;
}

@keyframes flashRed {
  0%,
  100% {
    background-color: transparent;
  }

  /* Original color at the start and end */
  50% {
    background-color: #5f7d66;
  }

  /* Red in the middle of the animation cycle */
}

.flash-red {
  animation: flashRed 3s infinite;

  /* border: 3px solid; */
  /* Runs the animation continuously every 1 second */
}

@keyframes flashGreen {
  0%,
  100% {
    background-color: transparent;
  }

  /* Original color at the start and end */
  50% {
    background-color: #277546;
  }
}

.chosenCoachFieldStyles {
  font-family: var(--primary-font-family);
  color: #f9f9f9;
  font-size: 4vh;
  margin-left: auto;
  margin-right: auto;
  grid-area: coachName;
  text-align: center;
}

.chosen-coach-title {
  color: #bdbaba;
  font-family: "Biiter", sans-serif;
  font-size: 20px;
  margin: auto;
  grid-area: coachTitle;
  text-align: center;
}

.chosen-coach-coachingStyle {
  margin-left: auto;
  margin-right: auto;
  color: #fdfbfb;
  font-size: 3vh;
  font-family: var(--primary-font-family);
  grid-area: coachStyle;
}

.personalization-question {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  font-size: 2vh;
  font-weight: 300;
}

.personalize-coach-grid {
  display: grid;
  grid-template-columns: 45% 10% 45%;
  grid-template-rows:
    minmax(30px, auto) minmax(30px, auto) minmax(40px, auto) minmax(20px, auto) minmax(30px, auto) minmax(30px, auto) minmax(
      40px,
      auto
    )
    minmax(20px, auto) minmax(30px, auto) minmax(30px, auto) minmax(40px, auto) minmax(20px, auto) minmax(30px, auto) minmax(
      40px,
      auto
    ) 20px minmax(40px, auto);
  grid-template-areas: "question1 question1 question1" "q1slider q1slider q1slider" "q1option1 . q1option2" ". . ." "question2 question2 question2" "q2slider q2slider q2slider" "q2option1 . q2option2" ". . ." "question3 question3 question3" "q3slider q3slider q3slider" "q3option1 . q3option2" ". . ." "question4 question4 question4" "genderDiv genderDiv genderDiv" ". . ." "findCoach findCoach findCoach";
  grid-area: 7 / 5 / 8 / 6;
  width: 90%;

  /* padding-right: 10px */
  background-color: var(--primary-bg-color);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.see-my-coach-btn {
  display: flex;

  /* Establishes this element as a flex container */
  align-items: center;

  /* Centers the content vertically */
  justify-content: center;

  /* Centers the content horizontally */
  width: 30vw;
  height: 6vh;
  margin-left: auto;
  margin-right: auto;
  grid-area: startCoachingButton;
  border-radius: 25px;
  color: #285f60;
  border-color: #285f60;
  border-width: 3px;
  background-color: rgba(40, 95, 96, 0.15);
}

.coach-reply-text {
  font-family: var(--primary-font-family);
}

.user-message-text {
  font-size: 1px;
}

.messages-view-header-coach-name {
  font-size: 30px;
  color: #fcf8f8;
  font-family: var(--primary-font-family);
}

.messages-view-header-coach-title {
  color: #cbbcc1;
  font-size: 20px;
  font-family: var(--primary-font-family);
}

.goal-option-btn {
  width: 45%;
  border-radius: 15px 15px 15px 0;
  border-width: 1px;
  border-color: var(--primary-text-color);
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;

  /* Smooth transition for background color */
}

.goal-option-btn:hover {
  background-color: #b0bbb1;
}

.coaching-product-option-btn {
  width: 200px;
  border-radius: 15px;
  border-color: var(--primary-text-color);
  transition: background-color 0.4s;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;

  /* Smooth transition for background color */
}

.option-btn:hover {
  background-color: #b0bbb1;

  /* Change to desired background color on hover */
}

.option-btn-text {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  margin: auto;
  text-align: center;
  font-size: 15px;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .personalize-coach-grid h1 {
    font-size: 4vh;
    color: #fffdfd;
    font-family: var(--primary-font-family);
    text-align: center;
  }
}

.option-left {
  text-align: left;
  margin-top: 5px;
}

.option-right {
  grid-area: q1option2;
  text-align: right;
  margin-top: 5px;
}

@media (max-width: 1279px) {
}

@media (min-width: 1024px) {
  .personalize-coach-grid h1 {
    color: var(--primary-text-color);
    font-family: var(--primary-font-family);
    font-size: 30px;
  }
}

@media (min-width: 300px) and (max-width: 786px) {
  .chosen-coach-coachingStyle {
    font-size: 2vh;
  }
}

@media (min-width: 300px) and (max-width: 575px) {
  #Reset-Session-Button.dropdown-item {
    width: 50%;
    height: auto;
    white-space: normal;
  }
}

@media (min-width: 300px) and (max-width: 575px) {
  .chat-window-sessions-dropdown {
    background-color: #285f60;
    border-radius: 11px;
    border-width: p;
    width: 100%;
    white-space: normal;
  }

  #New-Session-Button.dropdown-item {
    width: 50%;
    height: auto;
    white-space: normal;
  }

  .chat-list-content {
    gap: 0;
  }

  h5.name {
    font-size: 10px;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .chat-list-item.selected div.chat-list-content div.avatar img {
    display: none;
  }
}

@media (min-width: 576px) {
  .message-wrap .message-wrap {
    display: flex;
    width: 100%;
  }
}

@media (min-width: 300px) and (max-width: 575px) {
  #messageInput.form-control {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .chat-file {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .chat-window-sessions-dropdown {
    font-size: 12px;
  }

  #Reset-Session-Button.dropdown-item {
    font-size: 12px;
  }

  #New-Session-Button.dropdown-item {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .convo div.gridBox.convo {
    grid-area: coachSpeechBox;
  }
}

@media (min-width: 767px) {
  .convo-box-custom {
    display: grid;
    grid-template-columns: 250px 150px 250px;
    grid-template-rows: 1fr auto;
    grid-template-areas: "userHeadshotAndButtons spacer coachHeadshotAndButtons" "transcription transcription transcription";
  }
}

@media (max-width: 767px) {
  .convo-box-custom {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: auto auto 40px auto auto;
    grid-template-areas: ". userHeadshotAndButtons ." ". recordBtns ." ". line2 ." ". coachHeadshotAndButtons ." "transcription transcription transcription";
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .convo-window-custom-small .chat-list-item .chat-list-content .avatar {
    display: none;
  }
}

@media (max-width: 767px) {
  .convo-window-custom-small .scrollbar-wrap {
    display: none;
  }
}

@media (max-width: 575px) {
  #lottieAnimation {
    width: 30%;
    height: 40%;
  }
}

.messaging-font {
  font-family: var(--bs-body-font-family);
  color: var(--primary-text-color);
  font-weight: 300;
}

.chat-window-coach-reply-container {
  /* font-size: calc(10px + (20 - 14) * ((100vw - 480px) / (1024 - 480))) */
  color: var(--primary-text-color);
  font-weight: 300;
  margin-left: 10px;
}

.options-container {
  display: flex;
  justify-content: space-around;

  /* margin-bottom: 5vh */
  font-size: calc(14px + (20 - 14) * ((100vw - 480px) / (1024 - 480)));
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}

.convoWindow-sidebar {
  grid-area: sidebar;
}

@media (max-width: 767px) {
  .convoWindow-sidebar {
    display: none;
  }
}

.login-action--buttons {
  display: flex;
  flex-direction: row;
  width: 100%;

  /* flex-grow: 1 */
}

.login-title {
  font-family: var(--primary-font-family);
  font-size: calc(25px + 20 * ((100vw - 480px) / (1024 - 480)));
  color: var(--primary-text-color);
  text-align: center;
  margin-top: 3vh;
}

.login-form-label {
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: 1.5vh;
  margin-bottom: 5px;
  text-align: left;
}

.login-form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-form-input-box {
  border-radius: 5px;
  background-color: var(--primary-bg-color);
  border-width: 1px;
  width: 100%;
  border-color: #000000;
  border-style: solid;
  font-family: var(--primary-font-family);
  font-size: 1.5vh;
  color: var(--primary-text-color);
  padding-left: 10px;
  height: 3vh;
}

.forgot-password-button {
  height: 30px;
  width: 250px;
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #000000;
}

.signup-button {
  height: 2.5rem;
  width: 130px;
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #000000;
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.signup-button:hover {
  background-color: #b0bbb1;
}

.login-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 45%;
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid #000000;
  background-color: var(--primary-bg-color);
  margin-right: 10px;
  margin-left: 10px;
}

.login-buttons:hover {
  background-color: #b0bbb1;
}

.footer-copyright {
  font-family: var(--primary-font-family);
  font-size: 12px;
  color: var(--secondary-text-color);
  text-align: center;
  bottom: 100px;
  margin-top: auto;

  /* Pushes the footer to the bottom */
}

.signup-introduction {
  color: var(--secondary-text-color);
  font-family: var(--primary-font-family);
  font-size: 30px;
}

/* Hide the default checkbox but keep it functional */
.signup-terms-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  margin: 0;
}

/* Styling for the label that includes the custom checkbox */
.signup-terms-label h4 {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: calc(7px + 3 * ((100vw - 400px) / (1024 - 400)));
  margin-left: 10px;
  margin-top: 10px;
}

/* Before and after pseudo-elements for custom checkbox */
.signup-terms-label h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 5px;
  background-color: var(--primary-bg-color);
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-terms-checkbox:checked + h4::after {
  content: "\2714";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(245, 245, 245);
  font-size: 16px;
  font-weight: bold;
}

.signup-terms-checkbox:checked + h4::before {
  background-color: #285f60;
  border-color: #285f60;
}

.forgot-password {
  color: #285f60;
  font-family: var(--primary-font-family);
  font-size: 1.5vh;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .login-buttons {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .login-buttons {
    font-size: 17px;
  }
}

.login-main-panel {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

@media (max-width: 575px) {
  .login-main-panel {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .login-title {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .login-title {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  h4 {
    font-size: 12px;
  }
}

.signup-terms-container {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
}

.login-main-panel {
  display: flex;
  flex-direction: column;
  width: 70%;
  align-items: center;
  height: 100vh;
  justify-content: flex-start;
}

@media (max-width: 700px) {
  .login-main-panel {
    width: 70%;
  }
}

.signup-terms-label a {
  color: #5c9091;
}

@media (max-width: 767px) {
  .chat-list-item .chat-list-content .avatar {
    display: none;
  }
}

.forgot-password-intro {
  color: var(--secondary-text-color);
  font-family: var(--primary-font-family);
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.forgot-password-main-panel {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.forgot-password-container {
  display: flex;
  flex-direction: column;
  height: 70%;
  width: 35%;
  justify-content: flex-start;
  border: 2px solid #bdbdbd;
  box-shadow: 0px 0 10px #b0bbb1;
  border-radius: 15px;
}

.forgot-password-reset-password-button {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.forgot-password-post-submit-message {
  display: block;
  font-family: var(--primary-font-family);
  font-size: 12px;
  color: #8f8b89;
}

.login-incorrect-password-message {
  color: #00cb19;
  font-family: var(--primary-font-family);
  font-size: 15px;
  text-align: center;
}

.signup-error-message {
  color: #8a2d2d;
  margin-top: 10px;
  font-family: var(--primary-font-family);
  font-size: 12px;
}

*/ */ .personality-speed-btn {
  grid-area: resultsSpeed;
  margin-right: 10px;
  display: none;
}

.spider-chart-container {
  display: flex;
  grid-area: chart;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;

  /* width: 600px; */
}

.traits-nav-buttons-group {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}

.traits-nav-buttons {
  width: 400px;
  height: 60px;
  border-color: var(--primary-text-color);
  border-width: 1px;
  border-radius: 15px;

  /* background-color: rgba(0, 0, 0, 0) */
  font-family: var(--primary-font-family);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.disable-nav-button {
  border: 1px solid #000000;
  background-color: var(--primary-button-disabled-color);
  pointer-events: none;
  cursor: not-allowed;
}

.personality-speed-btn {
  grid-area: resultsSpeed;
  margin-right: 10px;
  display: none;
}

.traits-nav-buttons-active {
  background-color: var(--primary-selected-btn-color);
}

.traits-nav-buttons:hover {
  background-color: #b0bbb1;
}

.traits-main-window {
  width: 90%;
  margin-left: auto;
  margin-right: auto;

  /* height: 100% */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  overflow-y: auto;
}

.traits-title {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  text-align: left;
  font-size: 30px;
  width: 100%;
  font-weight: 300;
}

@media (max-width: 1300px) {
  .traits-nav-buttons {
    width: 25vw;
    height: 40px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .traits-nav-buttons {
    width: 20vw;
    font-size: 10px;
    height: 60px;
  }
}

.traits-explainer-box {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.traits-explainer-header {
  font-family: var(--primary-font-family);
  font-size: 30px;
  color: var(--primary-text-color);
}

.traits-explainer-maintext {
  font-family: var(--primary-font-family);
  font-size: 15px;
  color: var(--primary-text-color);
}

.traits-generate-report-btn {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0);
  border-color: #ffffff;
  border-width: 1px;
  border-radius: 15px;
}

.traits-generate-report-btn:hover {
  background-color: #293951;
}

.trait-audio-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
}

.trait-audioandreport-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 1300px) {
  .traits-nav-buttons {
    width: 25vw;
    font-size: 15px;
  }
}

.chart-and-text-box {
  display: flex;
  flex-direction: row-reverse;
  height: auto;
  width: 100%;
  margin-top: 30px;
  flex-wrap: wrap;
  overflow-y: auto;
  gap: 20px;
}

.profile-main-container {
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  width: 80%;
  height: 80%;
  padding: 20px;
  align-items: flex-start;
  overflow-y: auto;
}

.profile-main-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.profile-side-panel {
  width: 20vw;
  height: 100%;
  background-color: #d00909;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
}

.profile-suboption {
  width: 90%;
  background-color: #0a2d7d;
  margin-top: 5vh;
  height: 5vh;
}

.profile-info-box {
  display: flex;
  flex-direction: column;
  background-color: #2f04e7;
  flex: 1;
  overflow-y: auto;
}

.profile-info-grid {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}

@media (max-width: 1300px) {
  .spider-chart-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .traits-explainer-box {
    width: 100%;
    display: flex;
  }
}

.assessment-chart-spacer {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
}

@media (max-width: 720px) {
  .spider-chart {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 530px) {
  .spider-chart {
    width: 350px;
    height: 350px;
  }
}

.chat-window-user-initials {
  font-family: var(--primary-font-family);
  font-size: 1.5rem;
  color: #8e9091;
  padding: 20px;
  border: 1px solid #8e9091;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-right: 10px;
}

.sidemenu-user-initials {
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 50%;
  color: var(--primary-text-color);
  margin-right: 30px;
  margin-top: auto;
  margin-bottom: auto;
}

.convo-window-user-initials {
  grid-area: userHeadshotAndButtons;
  font-size: 45px;
  color: #000000;
  border-radius: 50%;
  border: 1px solid #000000;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-left: 50px;
  margin-right: 50px;
}

@media (max-width: 575px) {
  .convo-box-custom .usericons-convowindow {
    margin: 0;
  }
}

.signin-separator-text {
  font-family: var(--primary-font-family);
  font-size: 15px;
  color: var(--primary-text-color);
  margin-top: auto;
  margin-bottom: auto;
}

.signing-separator {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

.signing-separator-line {
  width: 120px;
  border: 1px solid #000000;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* GOOGLE SIGN IN */
.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: #131314;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #e3e3e3;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 50px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition:
    background-color 0.218s,
    border-color 0.218s,
    box-shadow 0.218s;
  transition:
    background-color 0.218s,
    border-color 0.218s,
    box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
  border-color: #8e918f;
  flex-shrink: 0;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex: 1;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity 0.218s;
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #13131461;
  border-color: #8e918f1f;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: #e3e3e31f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: white;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow:
    0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  box-shadow:
    0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: white;
  opacity: 8%;
}

.team-main-container {
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  background-color: var(--primary-bg-color);
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
}

.team-options-and-chart-box {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  overflow-y: auto;
  height: 1000px;
  justify-content: flex-start;
  width: 100%;
}

.teammate-name-headings {
  font-family: var(--primary-font-family);
  font-size: 20px;
  color: var(--primary-text-color);
}

.team-option-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #000000;
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  font-family: var(--primary-font-family);
  font-size: 15px;
  color: var(--primary-text-color);
  padding: 10px;
}

.team-option-buttons:hover {
  background: #b0bbb1;
}

.teammate-options-title {
  width: 100%;
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 25px;
  color: var(--primary-text-color);
  margin-top: 5px;
}

.team-title-buttons {
  border-radius: 15px;
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0);
  font-family: var(--primary-font-family);
  font-size: 2vh;
  color: #fefefe;
  padding: 10px;
}

.team-title-buttons:hover {
  background-color: rgba(40, 95, 96, 0.81);
}

.teammate-options-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 40%;
  justify-content: center;
  gap: 30px;
  align-content: flex-start;
  margin-right: 20px;
}

.team-page-title {
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-size: 5vh;
  width: 100%;
  margin-bottom: 30px;
  font-weight: 300;
}

.team-teammate-selection-dropdown {
  width: 200px;
  font-family: var(--primary-font-family);
  font-size: 15px;
  height: 40px;
  color: var(--primary-text-color);
  background-color: rgba(0, 0, 0, 0);
}

.team-teammate-selection-dropdown:disabled {
  color: var(--primary-button-disabled-color);
}

.team-teammate-selection-dropdown:hover {
  background-color: #b0bbb1;
}

.team-droopdown-menu-item {
  color: #ffffff;
}

.team-dropdown-button {
  background-color: rgba(0, 0, 0, 0);
}

.team-generate-report-button {
  font-family: var(--primary-font-family);
  font-size: 15px;
  color: var(--primary-text-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  background-color: #ffffff;
}

.team-buttons-box {
  display: flex;
  flex-direction: row;
  width: 50%;
  align-self: flex-start;
  gap: 20px;
}

@media (min-width: 700px) and (max-width: 1000px) {
  .team-buttons-box {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 700px) {
  .team-buttons-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
  }

  .team-options-and-chart-box {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    overflow-y: auto;
    height: 1000px;
    align-items: flex-start;
  }
}

.team-spidercharts-box {
  width: 50%;
  flex: 1;
}

@media (max-width: 700px) {
  .team-spidercharts-box {
    width: 100%;
    flex: 0;
  }

  .teammate-options-box {
    width: 100%;
    flex: 1;
  }
}

.team-main-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

@media (max-width: 700px) {
}

.team-spiderchart-box {
  display: flex;
  flex-direction: row;
  justify-content: center;

  /* border: 2px solid #920303 */
}

@media (max-width: 700px) {
  .team-spiderchart-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .teammate-options-box {
  }

  .team-option-buttons {
    font-size: 12px;
    white-space: normal;
    word-break: normal;
    height: auto;
  }
}

.team-spiderchart {
  box-sizing: border-box;
  width: 100%;
  height: 400px;
}

@media (max-width: 600px) {
  .team-spiderchart {
    height: 280px;
  }
}

@media (min-width: 721px) {
  .spider-chart {
    width: 600px;
    height: 600px;
  }
}

.conversation-panel-dropdown-menu-container {
}

.chatwindow-initials-dropdown-container {
  background-color: var(--primary-bg-color);
}

.chat-window-buttons {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
}

.convo-window-analyze-role-play {
  width: 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  background: var(--primary-bg-color);
  font-size: 12px;
  height: 50px;
  border-top-width: 1px;
  border-top-style: solid;
}

.convo-window-analyze-role-play:hover {
  background-color: #b0bbb1;
}

.convo-window-play-pause-btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.roleplay-customization-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  background: var(--primary-bg-color);
  border-radius: 5px;
  font-weight: 300;
}

.roleplay-customization-btn:hover {
  background-color: #b0bbb1;
}

.coaching-option-boxes {
  display: flex;
  flex-direction: row;
  gap: 60px;
  width: 60%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding: 10px;
}

.options-box-feather-icon {
  font-size: 3em;
  color: #828484;

  /* Adjust this value to make the icon larger or smaller */
}

.action-items-container {
  height: 100vh;
  flex: 1;
  padding: 20px 30px 0 0;
}

.chat-window-main-container {
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
  padding-top: 10px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  flex: 1;
  height: 90%;
  padding-right: 5px;
}

.action-item-items {
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 95vh;
  width: 20vw;
  background-color: var(--primary-bg-color);
  border-radius: 10px;
  box-shadow: 3px 0px #e6e6e6;
  padding-left: 10px;
}

.action-items-header {
  padding-left: 10px;
}

.message-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  overflow-y: auto;
  font-size: 1rem;
}

.chat-window-coach-avatar {
  width: 40px;
  height: 40px;
}

.chat-window-time {
  text-align: right;
  font-size: 10px;
  margin-bottom: 5px;
}

.chat-window-coach-headshot-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 10px;
}

.chat-window-user-message-container {
  display: flex;
  gap: 10px;
  align-self: flex-end;
  flex-direction: row;
  justify-content: flex-end;
  width: 85%;
  margin-top: 15px;
  padding-left: 20px;
}

.chat-window-coach-message-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 85%;
  padding-right: 20px;
  margin-top: 15px;
  gap: 10px;
}

.chat-window-time-coach {
  text-align: left;
  font-size: 10px;
  margin-bottom: 5px;
}

.chat-window-user-text-box {
  border-width: 1px;
  border-style: solid;
  border-radius: 20px 20px 0px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 1vh;
}

.chat-window-coach-text-box {
  /* border-style: solid; */
  /* border-width: 1px */
  border-radius: 20px 20px 20px 0;
  padding: 1vh;
  background-color: rgba(176, 187, 177, 0.63);
}

.chat-window-action-buttons {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left: 1px;
}

.chat-window-end-conversation {
  height: 50px;
  border-radius: 10px;
  background-color: #b0bbb1;
}

.chat-window-send-message-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #b0bbb1;
  border-radius: 10px;
  height: 50px;
  border-width: 0;
  width: 50px;
  font-size: 2rem;
}

.chat-window-end-message-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #b0bbb1;
  border-radius: 10px;
  height: 50px;
  border-width: 0;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 300;
  font-size: 1rem;
  white-space: normal;
  width: 150px;
}

.chat-window-header-row1 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.chat-window-header-row2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;

  /* height: 50px */
  align-items: center;
  gap: 20px;
}

.chat-window-header-row2-spacer {
  flex: 1;
  height: 100%;
}

.personalization-window-coach-gender-btns {
  width: 30%;
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: normal;
  font-weight: 300;
}

.personalization-window-coach-gender-btns:hover {
  background-color: #b0bbb1;
}

.personalization-window-coach-gender-btns:focus {
  background-color: #b0bbb1;
}

.assessment-window-main-container {
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
}

.assessment-window-header-line {
  width: 90%;
  height: 1%;
  border-bottom: 1px solid #a29e9e;
  margin-right: 10px;
  align-self: center;
}

.chat-window-main-container-box {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 95%;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.main-app-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.assessment-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.btn:disabled {
  color: var(--primary-button-disabled-color);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
}

.chat-window-option-icons {
  font-size: 50px;
  margin-bottom: 5px;
}

.roleplay-tweak-close {
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
}

.roleplay-tweak-close:hover {
  color: #b0bbb1;
}

.roleplay-tweak-save {
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
}

.roleplay-tweak-save:hover {
  color: #b0bbb1;
}

.chat-window-coach-customization-btn {
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  font-weight: 300;
  border: 1px solid #000000;
  height: 35px;
  padding-left: 20px;
  padding-right: 20px;
}

.chat-window-feedback-script-generation-btn {
  margin-left: 10px;
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  font-weight: 300;
  border: 1px solid #000000;
  width: 200px;
  height: 35px;
  background-color: var(--primary-bg-color);
}

.chat-window-coach-customization-btn:hover {
  background-color: var(--secondary-bg-color);
}

.coach-customization-gender-btn-div {
  grid-area: genderDiv;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

.voice-window-main-container-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 95%;
  height: 100%;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.voice-window-main-container {
  height: 90%;
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
  padding-top: 10px;
  margin-left: 20px;
  display: flex;

  /* flex: 1 */
  flex-direction: column;
  padding-bottom: 10px;
  width: 70vw;
}

.convo-window-header {
  display: flex;
  border-bottom: 1px solid var(--border-info-color);
  width: 100%;
  flex-direction: column;
  padding-left: 10px;
  justify-content: center;
  padding-bottom: 10px;
}

.main-window-header-bar {
  width: 100%;
  height: 50px;
  background-color: var(--primary-bg-color);
  box-shadow: var(--primary-box-shadow);
  display: flex;
  flex-direction: row;
  position: sticky;
  padding: 10px 10px 10px 20px;
  margin-bottom: 15px;
  align-items: center;
  z-index: 1000;
}

.header-button-box {
}

.header-btn-logout {
  width: 150px;
  height: 50px;
}

.dropdown-menu.show li {
  background-color: var(--primary-bg-color);
}

.chosen-coach-main-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  grid-template-rows: 2vh auto 1vh auto 1vh auto auto 5vh auto 5vh auto;
  grid-template-areas: ". . ." "header header header" ". . ." ". coachHeadshot ." ". . ." ". coachName ." ". coachTitle ." ". . ." ". coachStyle ." ". . ." ". startCoachingButton .";
}

.chosen-coach-grid-header {
  grid-area: header;
  font-family: "Figtree", sans-serif;
  color: #f5eaea;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 67px;
}

chosen-coach-grid-image {
  grid-area: coachHeadshot;
  width: 150px;
  height: 150px;
  margin: 6px auto 7px;
}

.profile-header {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.profile-field-and-value {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.profile-field-name p {
  color: var(--primary-text-color);
}

.profile-basic-info-box {
  width: 100%;
  padding-left: 10px;
  margin-top: 20px;
}

.profile-left-box {
  width: 100%;
  height: 100%;
}

.profile-right-box {
  width: 100%;
  height: 100%;
}

.profile-coaching-preferences-box-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.profile-customize-coach-btn {
  background-color: var(--primary-bg-color);
  border: 1px solid var(--primary-border-color);
  border-radius: var(--primary-border-radius);
}

.profile-content-box-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  height: 100%;
}

.profile-field {
  width: 12vw;
  font-weight: 700;
}

.profile-field-value {
  flex: 1;
  margin-left: 10px;
}

.profile-field-value p {
  word-break: break-word;
}

@media (max-width: 767px) {
  .chat-window-main-container.container {
    width: 100%;
    margin-left: 0;
    flex: 1;
  }

  .chat-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
  }

  .usericons-convowindow.coach-speed-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .options-container {
  }

  .option-btn-text {
    font-size: calc(10px + (20 - 14) * ((100vw - 480px) / (1024 - 480)));
  }

  .coaching-product-option-btn {
    width: 130px;
    height: 100px;
    padding: 10px;
  }

  .chat-window-option-icons {
    font-size: 30px;
  }

  .coaching-option-boxes {
    gap: 10px;
  }

  .coach-play-btn {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feather-play {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  h5.name {
    font-size: 15px;
  }

  .chat-list-content p {
    font-size: 12px;
  }
}

.login-main-box {
  display: flex;
  flex-direction: column;
  height: 70%;
  width: 50%;
  border-radius: 15px;
  border: 2px solid #bdbdbd;
  box-shadow: 0px 0 10px #b0bbb1;
  margin-top: 15vh;
}

.signup-body {
  background-color: var(--primary-bg-color);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.signup-body {
  background-color: var(--primary-bg-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.signup-main-box {
  display: flex;
  flex-direction: column;
  height: 90%;
  border: 2px solid #bdbdbd;
  box-shadow: 0px 0 10px #b0bbb1;
  border-radius: 15px;
  margin-top: auto;
  margin-bottom: auto;
  width: 70%;
}

@media (min-width: 480px) and (max-width: 940px) {
  #gridModalLabel-coach-customization.modal div.modal-dialog {
    width: 100%;
  }
}

.insights-window-main-content-box {
  width: 85%;
  height: 90%;
  border: 2px solid #bdbdbd;
  box-shadow: 0px 0 10px #b0bbb1;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 20px;
  margin-right: 5px;
}

.insights-window-subbox {
  width: 90%;
  height: 45%;
  border: 2px solid #bdbdbd;
  box-shadow: 0px 0 10px #b0bbb1;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  align-items: center;
}

.insights-window-timeline-subbox {
  width: 90%;
  height: 2%;
  box-shadow: 0 -10px 10px -10px #b0bbb1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  align-items: center;
  border-top: 2px solid #bdbdbd;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  margin-top: 15px;
  border-color: #bdbdbd;
  background-color: rgba(0, 0, 0, 0);
}

.insights-subbox-header {
  width: auto;

  /* height: 10% */
  text-align: center;
  font-weight: bold;
  color: var(--tertiary-text-color);
  position: relative;
  bottom: 30px;
  background-color: #ffffff;
}

.insights-subbox-main-content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.insights-window-session-summary-text {
  width: 100%;
  height: 100%;
  font-size: 15px;
  white-space: normal;
  word-break: normal;
}

.insights-window-main-container-box {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 95%;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.insights-window-option-box {
  background-color: var(--primary-bg-color);
  border-width: 1px;
  border-color: #000000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;

  /* width: 100px; */
  height: 30px;
}

.insights-subbox-main-content-options {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.insights-window-further-reading-btn {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  background-color: rgba(103, 133, 106, 0.5);
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
}

.insights-window-further-reading-btn-text {
  font-size: 15px;
  width: 100%;
  text-align: left;
}

.end-session-options-buttons {
  border: 1px solid #000000;
  border-radius: 10px;
  width: 150px;
  font-family: var(--primary-font-family);
  font-weight: 300;
}

.end-session-middle-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}

.end-session-button-icons {
  color: #67856a;
}

.profile-window-btn {
  border: 1px solid #000000;
  border-radius: 10px;
}

.profile-window-close-btn {
  width: 70px;
  height: 30px;
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.profile-window-modal-content {
  width: 100%;
  height: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  overflow-y: auto;
}

.profile-field-value-long {
  margin-left: 12vw;
}

.profile-field-long-title {
  font-weight: bold;
}

.profile-field-and-value-long {
  width: 100%;
  margin-bottom: 15px;
}

.insights-window-title-text {
  margin-right: 10px;
  margin-left: 10px;
  font-weight: 300;
}

@media (max-width: 767px) {
  body {
  }
}

.chat-window-message-input-textarea {
  overflow-y: hidden;
  width: 100%;
  display: flex;
  height: 100%;
  padding: 5px;
}

@media (max-width: 767px) {
  .voice-window-main-container {
    margin-left: 0;
    width: 100%;
  }
}

/* Toggle switch for coaching window */
/* Basic styling for the switch */
.switch-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
}

.switch-label {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 50px;
  border-radius: 100px;
  position: relative;
}

.switch-label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

/* Position the switch to the right when checked */
.switch-checkbox:checked + .switch-label:after {
  /* right: calc(100% - 5px); */
  /* bottom: 0px; */
  transform: translateY(105%);
}

.switch-label {
  background-color: rgb(155, 177, 158);
}

/* Checked state: Showing white background */
.switch-checkbox:checked + .switch-label {
  background-color: rgb(209, 209, 209);
}

.chat-window-toggle-coaching-btn {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 170px;

  /* display: none */
}

.chat-window-toggle-coaching-btn-text {
  text-align: center;
}

.toggleTextBefore {
  color: var(--text-color-unselected);
}

.toggleTextAfter {
  color: var(--text-color-selected);
}

@media (max-width: 767px) {
  .chat-window-main-container-box.container.gridBox {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    height: 100%;
  }
}

.chat-list-subheader {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .chat-list-subheader {
    display: flex;
    height: 25px;
    margin-bottom: 0;
    flex-direction: row;
    align-items: center;
  }

  .chat-list-subheader h2 {
    font-size: 15px;
    margin-bottom: 0;
  }
}

.chat-list-subheader-spacer {
  flex: 1;
}

@media (max-width: 767px) {
  .chat-list-wrap {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 10px;
    flex: 1;
  }

  .chat-list-content h5 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
  }

  .chat-list-content p {
    font-size: 10px;
  }

  .chat-list-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    height: 100%;
    padding: 2px;
  }

  .chat-list-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5px;
    height: 100%;
  }

  .layout-wrapper {
    height: 100%;
  }

  .main-layout {
    padding-bottom: 1;
    height: 100%;
  }

  .voice-window-main-container-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .voice-window-record-btn-large {
    background-color: #932424;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    margin-left: auto;
    margin-right: auto;
  }
}

#dropdown1.dropdown-toggle {
  background-color: #b0bbb1;
  border: none;
  color: var(--primary-text-color);
  border-radius: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttondropdown1 {
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  max-width: 100%;
}

.buttondropdown2 {
  background-color: #b0bbb1;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .buttondropdown2 {
    display: none;
  }
}

.rolePlay-dialogue {
}

@media (max-width: 767px) {
  .img-convo-window.coach {
    width: 50px;
    height: 50px;
    margin: 0;
  }
}

.convo-window-coach-btns-container-group-small-screen {
  grid-area: coachHeadshotAndButtons;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 767px) {
  .convo-window-coach-btns-container-group-small-screen {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-around;
  }
}

.convo-window-user-btns-and-headshot-group {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: coachHeadshotAndButtons;
  flex-wrap: wrap;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  gap: 10px;
}

.convo-window-line-small-screen {
  height: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .convo-window-line-small-screen {
    display: none;
  }
}

@media (max-width: 767px) {
  .convo-window-user-initials {
    width: 50px;
    height: 50px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
  }

  .usericons-convowindow {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .convo-window-record-btn {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-top: 20px;
    margin-right: 60px;
    margin-left: 60px;
  }

  .insights-window-main-container-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .main-app-content {
    height: 80%;
  }

  .insights-window-main-container-box .sub-header h2 {
    font-size: 15px;
  }
}

.chat-window-coaching-depth-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-left: 10px;
}

.presentation-preparation-btn {
  background-color: rgba(137, 143, 139, 0);
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  flex-wrap: wrap;
  font-size: 1rem;
}

.presentation-preparation-btn:hover {
  background-color: var(--secondary-bg-color);
}

.presentation-upload-btn {
  background-color: rgba(137, 143, 139, 0);
  width: 150px;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  flex-wrap: wrap;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
}

.presentation-upload-btn:hover {
  background-color: var(--secondary-bg-color);
}

.chat-window-canvas-for-fileshow {
  width: 100%;
}

.chat-window-box-for-fileshow {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.chat-window-show-file-row1 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.chat-window-showfile-row2 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.chat-window-showfile-row3 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}

.chat-window-showfile-navbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
  width: 30px;
  height: 30px;
  border: 1px solid #000000;
}

.chat-window-showfile-navbtn:hover {
  background-color: var(--secondary-bg-color);
}

.chat-window-showFile-upload-btn-warning {
  flex: 1;
  color: #aa0202;
  text-align: left;
  font-size: 12px;
  padding-left: 30px;
  padding-right: 30px;
}

.chat-window-showFile-pagecount {
  font-size: 10px;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.chat-window-showFile-showOptions-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
}

.chat-window-showFile-easyHard-questions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 10px;
}

.chat-window-presentationQuestions {
}

.chat-window-presentation-chooseFileOrNot-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 15px;
  margin-top: 15px;
}

.chat-window-no-deck-uploaded {
  color: var(--tertiary-text-color);
}

.chat-window-deck-analysis-btns {
  width: 40%;
  font-size: 0.75rem;
}

.lottie-deck-loading {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.lottie {
  width: 70px;
  height: 35px;

  /* margin-left: 10px; */
}

.voice-window-lottie {
  grid-area: speakingArea;
  align-self: center;
  display: none;
  width: 60%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
}

.voice-window-lottie-container {
  width: 145px;
  margin: auto;
}

@media (max-width: 767px) {
  .convo-window-user-btns-small-screen {
    grid-area: userHeadshotAndButtons;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    gap: 10px;
  }
}

.voice-window-record-btn-vanish-small-screen {
  display: block;
}

@media (max-width: 767px) {
  .voice-window-initials-small-screen {
    display: none;
  }
}

.voice-window-user-btns-small-screen {
  grid-area: userHeadshotAndButtons;
}

@media (max-width: 767px) {
  .voice-window-lottie-container {
    grid-area: userHeadshotAndButtons;
    height: 150px;
    width: 150px;
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media (max-width: 767px) {
  .voice-window-record-btn-vanish-small-screen {
    display: none;
  }
}

@media (max-width: 767px) {
  .convo-window-coach-btns-group-small-screen {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
  }
}

.voice-window-coach-play-btn-small-screen {
  grid-area: coachHeadshotAndButtons;
}

@media (max-width: 767px) {
  .voice-window-coach-play-btn-small-screen {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }
}

.small-screen-hide {
}

@media (max-width: 767px) {
  .small-screen-hide {
    display: none;
  }
}

.large-screen-hide {
}

@media (min-width: 768px) {
  .large-screen-hide {
    display: none;
  }
}

.small-screen-font {
}

@media (max-width: 767px) {
  .small-screen-font {
    font-size: 1rem;
    font-weight: 300;
  }
}

.voice-btns-in-chat-window-form-small-screen {
}

@media (max-width: 767px) {
  .voice-btns-in-chat-window-form-small-screen {
    font-size: 15px;
  }

  .chat-bottom .chat-form-wrap {
    gap: 0px;
    padding-left: 0px;
  }

  .chat-window-message-input-textarea {
    font-size: 1rem;
  }

  .traits-title {
    font-size: 1.25rem;
    font-family: var(--primary-font-family);
    font-weight: 200;
  }

  .coach-convo-window-buttons {
    width: 25px;
    height: 25px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
  }
}

.custom-pre {
  margin: 0;
  padding: 0;
  white-space: pre-wrap;

  /* Wrap text inside pre element */
  word-wrap: break-word;

  /* Ensure long words break properly */
}

@media (max-width: 767px) {
  .chat-window-coach-customization-btn {
    /* width: 100px */
    height: 40px;
    font-size: 0.75rem;
    border-radius: 5px;
    padding: 10px;
    min-width: 40px;
  }

  .chat-window-coaching-depth-container {
    width: 100px;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

  .chat-window-toggle-coaching-btn-text {
    font-size: 12px;
    text-decoration: none;
    text-align: left;
  }

  .chat-window-toggle-coaching-btn-text {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .switch-label:after {
    left: 5px;
  }
}

/* /// TIMELINE //////// */
/* .timelineBox,
.timelineBox *::before,
.timelineBox *::after {
    box-sizing: border-box;
} */
.timeLineContainer {
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  padding-top: 5px;
  margin-top: 1px;
}

.timeline {
  left: 0%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #333;
  height: 100%;
}

.milestoneDot {
  /* position: absolute */
  left: 0%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid rgb(209, 209, 209);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.label {
  position: absolute;
  left: 30px;
  white-space: nowrap;
}

.timelineBox {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 40%;
  align-items: center;
  justify-content: flex-start;
}

.timelineRecommendationBox {
  position: absolute;
  left: 0%;
  height: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.insights-window-left-boxes {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.timelineRecommendationsContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  height: 100%;
}

.timeline-recommendations-header {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tertiary-text-color);
}

.timeline-recommendations-header-box {
  position: relative;
  background-color: var(--primary-bg-color);
  padding-left: 5px;
  padding-right: 5px;
  height: 1rem;
  margin-top: -0.75rem;
}

.timeline-recommendations-content {
  font-size: 0.75rem;
}

.timeline-recommendations-content-box {
  width: 100%;
  margin-top: 15px;
  padding-right: 10px;
  padding-left: 10px;
  overflow-y: auto;
  height: 100%;
}

.insights-window-timeline-box-title {
  width: 100%;
  height: 10%;
}

.insights-window-timeline-dotsAndContent {
  position: relative;
  height: 100%;
  width: 100%;
}

.insights-window-content-box1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.insights-window-timeline-container1 {
  position: absolute;
  left: 0;
  width: 90%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: 0;
  align-items: center;
}

.insights-window-timeline-content-row1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 80%;
  max-height: 15vh;
}

.insights-window-timeline-content-row2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 5px;
}

.insights-window-timeline-next-steps-btn {
  width: 50%;
  background-color: var(--primary-bg-color);
  border-radius: 7px;
  border: 1px solid #000000;
  font-family: var(--primary-font-family);
  font-weight: 300;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.insights-window-timeline-next-steps-btn:hover {
  background-color: var(--secondary-bg-color);
}

.voice-window-grid-container-box {
}

@media (min-width: 768px) {
  .voice-window-grid-container-box {
    margin-left: auto;
    margin-right: auto;
  }
}

.coach-customization-show-coach-container {
  width: 40%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  border: 1px solid var(--tertiary-text-color);
  border-radius: 10px;
}

.coach-customization-main-content-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.customize-coach-chosen-coach-header {
  width: 100%;
}

.coach-customization-chosen-coach-image-box {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.coach-customization-chosen-coach-description {
  width: 100%;
  flex: 1;
  overflow-y: auto;
}

.coach-customization-chosen-coach-img {
}

.coach-customization-chosen-coach-name-title {
  text-align: center;
  font-size: 1.5rem;
}

.coach-customization-find-coach-btn {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  border: 1px solid #000000;
  border-radius: 5px;
  background: var(--primary-slider-color);
  color: #000000;
}

.coach-customization-find-coach-btn:hover {
  background: var(--tertiary-text-color);
}

.sessions-summaries-text {
  font-size: 13px;
}

.session-summaries-title {
  font-size: 15px;
}

.main-vivaldi-title {
  font-weight: 300;
  font-size: 30px;
}

@media (max-width: 767px) {
  .chat-window-end-message-btn {
    font-size: 0.5rem;
    width: 75px;
  }
}

.chat-window-role-play-tweak-icon {
  margin-right: 15px;
}

.feedback-tweak-container {
  padding: 10px;
  margin-top: 10px;
}

.feedback-script-tweaking-grid {
  display: grid;
  grid-template-columns: 45% 10% 45%;
  grid-template-rows: auto 20px auto 30px auto 20px auto 30px auto;
  grid-template-areas: "title title generateFeedbackBtn" ". . ." "quesiton1 quesiton1 ." "range1 range1 range1" "range1LowerEnd . range1UpperEnd" ". . ." "question2 question2 ." "range2 range2 range2" "range2LowerEnd . range2UpperEnd";
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  padding: 15px;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: var(--bs-body-font-family);
}

.feedback-tweak-title {
  grid-area: title;
  font-weight: 300;
  font-size: 1rem;
}

.feedback-tweak-generate-script-btn {
  color: var(--primary-text-color);
  grid-area: generateFeedbackBtn;
  width: 150px;
  font-size: 0.75rem;
  font-weight: 300;
  margin: auto;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
}

.feedback-tweak-generate-script-btn:hover {
  /* background-color: var(--secondary-bg-color); */
  background-color: #b0bbb1;
}

.chat-window-feedback-script-generation-btn:hover {
  background-color: var(--secondary-bg-color);

  /* background-color: #b0bbb1; */
}

.interview-prep-options-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.post-intake-intro-options-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.interview-prep-option-btns {
  width: 270px;
  height: 30px;
  padding: 5px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  background: var(--primary-bg-color);
}

.interview-prep-option-btns:hover {
  background-color: var(--secondary-bg-color);
}

.post-intake-intro-option-btns {
  width: 40%;
  padding: 5px;
  border-radius: 15px;
  border-width: 1px;
  border-style: solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  background: var(--primary-bg-color);
}

.post-intake-intro-option-btns:hover {
  background-color: var(--secondary-bg-color);
}

.chat-window-interview-prep-analysis-btn {
  margin-left: 10px;
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  font-weight: 300;
  border: 1px solid #000000;
  width: 350px;
  height: 35px;
  background-color: var(--primary-bg-color);
}

.chat-window-interview-prep-analysis-btn:hover {
  background-color: var(--secondary-bg-color);
}

.intake-header-explainer {
  font-weight: 300;
  color: #215324;
  text-align: center;
}

@keyframes newSessionFlash {
  0%,
  100% {
    background-color: transparent;
  }

  /* Original color at the start and end */
  50% {
    background-color: #34683a;
  }

  /* Red in the middle of the animation cycle */
}

.new-session-flash {
  animation: newSessionFlash 3s infinite;

  /* border: 3px solid; */
  /* Runs the animation continuously every 1 second */
}

.further-reading-links-icon-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 20%;
  max-width: 50px;
}

.further-reading-links-description-box {
  flex: 1;
}

.further-reading-links-buttons {
  align-self: start;
}

.chat-window-end-chat-btn {
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  border-radius: 5px;
  font-weight: 300;
  font-size: 1rem;
  border: 1px solid #000000;
  height: 35px;
  border-width: 1px;
  padding: 5px;
}

.chat-window-end-chat-btn:hover {
  background-color: #b0bbb1;
}

.chat-window-input-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
}

.end-of-intake-chat-bottom-btn {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 20px;
}

.end-of-intake-message-chat-bottom {
  width: 100%;
  text-align: center;
}

.google-login-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .login-main-box {
    width: 80%;
  }

  .signup-main-box {
    width: 90%;
  }

  #signup-terms-link {
    font-size: 0.75rem;
    font-weight: 300;
  }
}

.voice-window-primary-box {
  width: 100%;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.voice-window-primary-btn {
  width: 250px;
  height: 250px;
  font-size: 5rem;
  border-radius: 50%;
}

.voice-window-primary-btn-lottie {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(66, 118, 66, 0.8);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-window-primary-btn-box {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.voice-window-primary-btn-box-recording {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.voice-window-primary-btn-coach-headshot {
  width: 300px;
  height: 300px;
  width: 100%;

  /* Make the image fill the container */
  border-radius: 50%;

  /* Ensure the image is circular */
  animation: flashGreenAura 1s infinite;

  /* Apply the flashing aura effect */
  box-shadow: 0 0 10px 10px rgba(0, 255, 0, 0.8);

  /* Initial box shadow for instant effect */
}

@keyframes flashGreenAura {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }

  50% {
    box-shadow: 0 0 10px 10px rgba(66, 118, 66, 0.8);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

@keyframes flashGreen2 {
  0% {
    border: 1px solid rgba(0, 255, 0, 0);
    box-shadow: 0 0 1px 1px rgba(66, 118, 66, 0.8);
  }

  50% {
    border: 5px solid rgba(0, 255, 0, 0);
    box-shadow: 0 0 10px 10px rgba(66, 118, 66, 0.8);
  }

  100% {
    border: 1px solid rgba(0, 255, 0, 0);
    box-shadow: 0 0 1px 1px rgba(66, 118, 66, 0.8);
  }
}

.voice-window-primary-stationary-btn {
  width: 250px;
  height: 250px;
  font-size: 5rem;
  border-radius: 50%;
  animation: flashGreen2 3s infinite;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#headshotCoach {
  animation: flashGreenAura 1.5s infinite;
}

.voice-window-lottie-box-smaller {
  width: 130%;
  height: 130%;
}

.voice-window-tap-to-record-text {
  font-size: 1.5rem;
  color: #000000;
}

.voice-window-mic-icon {
  margin-right: 50px;
  margin-left: 50px;
  color: #000000;
  font-size: 4rem;
}

.voice-window-new-session-btn {
}

@media (max-width: 767px) {
  .buttondropdown1.new-session-flash {
  }
}

.voice-window-drop-down-small {
}

@media (max-width: 767px) {
  .voice-window-drop-down-small {
  }

  .chat-window-main-container {
    width: 100%;
    margin-left: 0;
    height: 100%;
  }

  .chat-window-main-container-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .insights-window-main-content-box {
    width: 100%;
    margin-left: 0;
    padding-right: 5px;
  }

  .insights-window-timeline-next-steps-btn {
    width: 80%;
    margin-left: 10px;
  }

  .timeLineContainer {
    width: 100%;
  }

  .insights-window-timeline-container1 {
    width: 100%;
  }

  .insights-window-title-text {
    font-size: 0.75rem;
  }
}

.voice-window-bottom-btns-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.voice-window-control-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 75px;
  border-radius: 20px;
  background-color: rgba(66, 118, 66, 0.8);
  font-size: 1.5rem;
  padding: 5px;
  font-weight: 300;
  border-top-style: none;
  border-top-color: #000000;
  border-left-style: none;
  border-left-color: #000000;
  border-right-style: none;
  border-right-color: #000000;
  border-bottom-style: none;
  border-bottom-color: #000000;
  max-width: 100px;
  color: #000000;

  /* border: 2px solid rgba(66, 118, 66, 0.8); */
}

.voice-window-control-btns:hover {
  background-color: rgba(66, 118, 66, 1);
}

.voice-window-bottom-btns-text {
  font-size: 0.75rem;
}

.voice-window-bottom-btns-icons {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .chat-window-end-chat-btn {
    font-size: 0.75rem;
    height: 40px;
    min-width: 40px;
  }
}

.chat-window-customize-coach-btn-text {
}

@media (max-width: 767px) {
  .chat-window-customize-coach-btn-text {
    display: none;
  }
}

.chat-window-end-conversation-btn-text {
}

@media (max-width: 767px) {
  .chat-window-end-conversation-btn-text {
    display: none;
  }
}

.chat-window-row2-right-container-box {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 5px;
  align-items: center;
  align-content: center;
  gap: 5px;
}

@media (max-width: 767px) {
  .personalization-question {
    font-size: 1rem;
  }

  .personalize-coach-grid {
    width: 100%;
  }

  .coach-customization-modal-body {
    width: 100%;
  }

  .coach-customization-main-content-container {
    flex-wrap: wrap;
    width: 100%;
  }

  .coach-customization-find-coach-btn {
    width: 70%;
  }

  .coach-customization-show-coach-container {
    width: 100%;
  }

  .endsession-modal-content.modal-content {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.sessions-new-reset-session {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.new-sessions-dropdown {
}

.dropdown-menu-customized {
  position: absolute;
  z-index: 1050;
}

@media (max-width: 767px) {
  #feedbackTweakInput1.form-range {
    max-width: 100%;
  }

  .feedback-tweak-generate-script-btn {
    max-width: 100%;
  }

  .feedback-script-tweaking-grid {
    width: 95%;
  }
}

.role-play-modal-small-screen {
}

@media (max-width: 767px) {
  .role-play-modal-small-screen {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .roleplay-modal-content {
    width: 100%;
  }

  .roleplay-modal-grid {
    width: 100%;
  }
}
