
.role-selector-con .amplify-radio__button {
  display: none;
}

.role-selector {
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.role-selector.active {
  border: 1px solid #43a047;
  background-color: #43a047;
  color: white;
}

.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-style: normal;
}

html .oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html .caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

html .playfair {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:root {
  --unit: 12px;
}

@media screen and (max-width: 1200px) {
  :root {
    --unit: 6px;
  }
}

html .flex-wrapper {
  display: flex;
}

html .center-wrapper {
  display: flex;
  align-items: center;
}

img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

html .column-wrapper {
  display: flex;
  flex-direction: column;
}

html .end-wrapper {
  display: flex;
  justify-content: flex-end;
}

html .all-center-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

html .justify-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

html .between-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html .around-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

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

html .flex-1 {
  flex: 1;
}

html .relative {
  position: relative;
}

html .inline-block {
  display: inline-block;
}

html .margin-small {
  margin: calc(var(--unit) * 0.5);
}

html .margin-normal {
  margin: var(--unit);
}

html .margin-big {
  margin: calc(var(--unit) * 2);
}

html .margin-t-small {
  margin-top: calc(var(--unit) * 0.5);
}

html .margin-t-normal {
  margin-top: var(--unit);
}

html .margin-t-big {
  margin-top: calc(var(--unit) * 2);
}

html .margin-b-small {
  margin-bottom: calc(var(--unit) * 0.5);
}

html .margin-b-normal {
  margin-bottom: var(--unit);
}

html .margin-b-big {
  margin-bottom: calc(var(--unit) * 2);
}

html .padding-small {
  padding: calc(var(--unit) * 0.75);
}

html .padding-normal {
  padding: var(--unit);
}

html .padding-big {
  padding: calc(var(--unit) * 2);
}

html .padding-large {
  padding: calc(var(--unit) * 4);
}

html .padding-t-normal {
  padding-top: var(--unit);
}

html .padding-t-big {
  padding-top: calc(var(--unit) * 2);
}

html .padding-t-large {
  padding-top: calc(var(--unit) * 4);
}

html .padding-t-small {
  padding-top: calc(var(--unit) * 0.75);
}

html .padding-b-normal {
  padding-bottom: var(--unit);
}

html .padding-b-big {
  padding-bottom: calc(var(--unit) * 2);
}

html .padding-b-small {
  padding-bottom: calc(var(--unit) * 0.75);
}

html .margin-l-small {
  margin-left: calc(var(--unit) * 0.75);
}

html .margin-l-normal {
  margin-left: var(--unit);
}

html .margin-l-big {
  margin-left: calc(var(--unit) * 2);
}

html .margin-r-normal {
  margin-right: var(--unit);
}

html .margin-r-big {
  margin-right: calc(var(--unit) * 2);
}

html .margin-l-small {
  margin-left: calc(var(--unit) * 0.75);
}

html .margin-r-small {
  margin-right: calc(var(--unit) * 0.75);
}

html .padding-r-normal {
  padding-right: var(--unit);
}

html .padding-r-big {
  padding-right: calc(var(--unit) * 2);
}

html .padding-r-small {
  padding-right: calc(var(--unit) * 0.75);
}

html .padding-l-normal {
  padding-left: var(--unit);
}

html .padding-l-big {
  padding-left: calc(var(--unit) * 2);
}

html .padding-l-small {
  padding-left: calc(var(--unit) * 0.75);
}

html .padding-l-large {
  padding-left: calc(var(--unit) * 4);
}

html .padding-l-huge {
  padding-left: calc(var(--unit) * 6);
}

body,
#root,
.app-page {
  min-height: 100vh;
}

html .height-100p {
  height: 100%;
}

html .width-100p {
  width: 100%;
}

html .po-fixed {
  position: fixed;
}

html .no-drag {
  -webkit-app-region: no-drag;
}

a {
  cursor: pointer;
  color: inherit;
}

html .pointer {
  cursor: pointer;
}

html .big-text {
  font-size: calc(var(--font-size-unit) * 1.5);
}

html .background-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

html .ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

html .ellipsis-text {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  max-width: 100%;
}

html .circle {
  border-radius: 50%;
}

html .loading-img {
  background-image: url("https://assets.build-surety.com.au/common/loading.gif");
  height: 100vh;
  background-size: 300px;
  background-color: white;
}

html .uppercase {
  text-transform: uppercase;
}

html .capitalize {
  text-transform: capitalize;
}

html .initial-text {
  text-transform: initial;
}

.required {
  display: inline-block;
  margin-right: 4px;
  color: #ff4d4f;
  font-size: 14px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: "*";
}

a:hover {
  text-decoration: underline;
}

@media screen and (hover: none) {
  a {
    text-decoration: underline;
  }
}

.common-loading {
  position: absolute;
  top: 0;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.75);
}

.arrow_box {
  position: absolute;
  border: 3px solid #fff;
  background: #43a047;
  color: white;
  width: 200px;
  text-align: center;
  border-radius: 5px;
  z-index: 1201;
  animation-name: arrow_animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  margin-top: -12px;
}

@keyframes arrow_animation {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(10px);
  }
}

.arrow_box:after,
.arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow_box:after {
  border-color: rgba(67, 160, 71, 0);
  border-top-color: #43a047;
  border-width: 10px;
  margin-left: -10px;
}

.arrow_box:before {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 14px;
  margin-left: -14px;
}

a,
a:hover {
  text-decoration: none;
}

ul.list {
  list-style-type: disc;
  padding-left: 16px;
  li {
    margin-bottom: 12px;
  }
}

ul.list2 {
  list-style-type: "❖";
  padding-left: 16px;

  li {
    margin-bottom: 12px;
    padding-left: 16px;
  }
}

ul.list3 {
  list-style-type: "➢";
  padding-left: 40px;

  li {
    padding-left: 16px;
  }
}

ul.list2756 {
  list-style-type: "❖";
}

ol.list {
  padding-left: 16px;
  li {
    margin-bottom: 12px;
  }
}

img.invert {
  filter: invert(1);
}

img.logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 20%;
}

.center-box {
  width: 1080px;
  margin: 0 auto;
}

.center-max-1080 {
  max-width: 1080px;
  margin: 0 auto;
}

.center-max-1440 {
  max-width: 1440px;
  margin: 0 auto;
}

.chat-view {
  width: 800px;
  height: 600px;
  position: fixed;
  bottom: 10vh;
  right: 15vw;
  z-index: 100;
  border-radius: 12px;
}

.chat-view-fullscreen {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
}

.side-bar-menu {
  .content {
    display: none;
  }

  &:hover {
    .content {
      display: block;
    }
  }
}

input.w-input:disabled,
textarea.w-input:disabled {
  opacity: 1 !important;
  color: #000000 !important;
  background-color: #ffffff !important;
  -webkit-text-fill-color: #000000 !important;
}

.quill-content {
  blockquote {
    border-left: solid 2px #5e35b1 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-left: 5px !important;
  }

  ul {
    border-left: solid 2px #5e35b1 !important;
  }

  ol {
    border-left: solid 2px #5e35b1 !important;
  }

  img {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}

.default-max-width {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.ai-chat .cs-message-input {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 40px;
  padding-left: 24px;
  padding-right: 24px;
  gap: 4px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.ai-chat .cs-message-input__content-editor-wrapper {
  border-radius: 8px;
}

.ai-chat .cs-button--attachment {
  background-color: #ffffff;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #302A27;
}

.ai-chat .cs-button--send {
  background-color: #ffffff;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #302A27;
}

.ai-chat .cs-message-input__content-editor-wrapper {
  background-color: #ffffff;
}

.ai-chat .cs-message-input__content-editor {
  background-color: #ffffff;
}

.ai-chat .cs-message--outgoing .cs-message__content {
  background-color: #ffffff;
}

.ai-chat .cs-message--incoming .cs-message__content {
  background-color: #ffffff;
}

.ai-chat .ps__thumb-y {
  background-color: rgba(255, 255, 255, 0.6);
}

.user-chat .cs-message-input {
  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 40px;
  padding-left: 24px;
  padding-right: 24px;
  gap: 4px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.user-chat .cs-message-input__content-editor-wrapper {
  border-radius: 8px;
}

.user-chat .cs-button--attachment {
  background-color: #f9f9f9;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #302A27;
}

.user-chat .cs-button--send {
  background-color:#f9f9f9;;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #302A27;
}

.user-chat .cs-message-input__content-editor-wrapper {
  background-color: #f9f9f9;
}

.user-chat .cs-message-input__content-editor {
  background-color: #f9f9f9;
}

.user-chat .cs-message--outgoing .cs-message__content {
  background-color: #f9f9f9;
}

.user-chat .cs-message--incoming .cs-message__content {
  background-color: #f9f9f9;
}

.user-chat .ps__thumb-y {
  background-color: rgba(255, 255, 255, 0.6);
}

html, body {
  overscroll-behavior: none; 
}
.top-header-con {
  padding: var(--unit);
  padding-bottom: 24px;
}

@media screen and (max-width: 1200px) {
  .top-header-con {
    padding: var(--unit) var(--unit) var(--unit) 0;
    margin-left: 64px;
  }
}
.menu-con {
  width: 130px;
  text-align: center;
  &.mobile {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
}
.menu-con .icon-image {
  border-radius: 12px;
  width: 120px;
  &.mobile {
    width: 60px;
  }
}

.top-horizontal-menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 64px;
  background-color: #f4f4f6;
  padding: 0 48px;
  justify-content: flex-start;
  position: fixed;
  top: 0;
}

.top-horizontal-menu-content-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  flex: 1;
}

.menu-item {
  color: #302a27;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 100%;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  cursor: pointer;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.menu-item--active {
  color: #fabb00;
  background: #ffffff;
}

.menu-item:hover {
  color: #fabb00;
  background: #ffffff;
}

.menu-item--drawer {
  color: #888;
  background: transparent;
  border-radius: 4px;
  font-size: 16px;
  padding: 16px 16px;
  margin: 0;
}

.menu-item--drawer.menu-item--active {
  color: #222;
  background: rgba(0, 0, 0, 0.08);
}

.submenu-popover {
  background: #fff;
  border-radius: 8px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1.5px 4px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  padding: 8px 0;
  z-index: 1200;
}

.submenu-popover .menu-item {
  color: #222;
  background: transparent;
  border-radius: 6px;
  font-size: 15px;
  padding: 10px 24px;
  margin: 0 8px;
  transition: background 0.15s;
}

.submenu-popover .menu-item:hover,
.submenu-popover .menu-item.menu-item--active {
  background: #f5f5f5;
  color: #111;
}

.submenu-popover--card {
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.submenu-bar {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #eee;
  z-index: 1099;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  min-height: 120px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 200px;
  flex-wrap: wrap;
}

.submenu-card {
  min-width: 327px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 80px;
}

.submenu-card:hover,
.submenu-card.submenu-card--active {
  background: #fabb0024;
  color: #222;
}

.submenu-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
  color: #302a27;
}

.submenu-desc {
  font-size: 16px;
  color: #443b37d6;
}

.submenu-bar-fade-enter {
  opacity: 0;
  transform: translateY(-10px);
}
.submenu-bar-fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 200ms,
    transform 200ms;
}
.submenu-bar-fade-exit {
  opacity: 1;
  transform: translateY(0);
}
.submenu-bar-fade-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 200ms,
    transform 200ms;
}

@media (max-width: 900px) {
  .mobile-submenu-list {
    position: relative;
  }
  .mobile-submenu-list::before {
    content: "";
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #8c8b8b33;
    border-radius: 1px;
    z-index: 0;
  }
  .mobile-submenu-list.level-3::before,
  .mobile-submenu-list.level-4::before {
    display: none;
  }
  .MuiDrawer-paper .MuiListItemButton-root::before {
    display: none !important;
  }
  .mobile-menu-paper {
    width: 283px;
    .MuiList-root {
      padding-top: 59px;
      .MuiListItem-root {
        width: auto;
        margin: 0 8px 16px;
        padding: 0;

        .MuiListItemButton-root {
          padding: 0;
          min-height: 48px;
          padding-left: 42px;
          border-radius: 8px;
        }
        .Mui-selected {
          background-color: #f4f6f7;
        }
      }
    }

    .mobile-submenu-list {
      padding-top: 0;
      margin-left: 32px;
      margin-top: -8px;

      .MuiListItem-root {
        .MuiButtonBase-root {
          padding-left: 8px;
          min-height: 32px;
          color: #302a2799;
          font-family: Poppins;
          font-weight: 400;
          font-size: 14px;
          line-height: 100%;
          border-radius: 4px;
          text-transform: capitalize;
        }
      }
      .MuiListItemButton-root {
        padding: 0;
        border-radius: 8px;
        padding-left: 0;
      }
    }
    .mobile-submenu-list.level-3 {
      margin-left: 16px;
      margin-top: 0;
      .MuiListItem-root {
        margin-bottom: 8px;
      }
    }
  }
}

.btns-con {
  position: absolute;
  top: calc(var(--unit) * -2 - 0.875rem * 1.75);
  right: calc(var(--unit) * 4);
}

@media screen and (max-width:768px) {
  .btns-con {
    top: initial;
    bottom: calc(0.875rem * -1.75 - 8px);
  }
}
.head-th {
  background-color: rgb(244, 246, 248);
}

.head-th:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: rgb(255 255 255) 8px 0px 0px inset;
}

.head-th:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: rgb(255 255 255) -8px 0px 0px inset;
}

.add-btn {
  position: absolute;
  top: calc(var(--unit) * -2 - 0.875rem * 1.75);
  right: calc(var(--unit) * 4);
  z-index: 90;
}

.lesson-notification-btn {
  right: calc(var(--unit) * 4 + 120px);
}

@media screen and (max-width:768px) {
  .lesson-notification-btn {
    right: calc(var(--unit) * 4);;
  }
}

.image-con:hover .image-action {
  display: flex;
}

.image-con .image-action {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.05);
  display: none;
}

.border-image {
  border: 1px solid #ececec;
  border-radius: 12px;
}
.selected-item-container:hover .selected-item-action-container {
  display: flex;
}

.selected-item-action-container {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.link-item-icon {
  height: 40px;
  width: 100%;
}

.link-item-icon i {
  font-size: 40px;
}

.widget-query-delete-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.coloris-input {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.underline-edit {
  outline: none;
  margin: 0 6px;
  display: inline;
  border-bottom: 1px solid black;
  position: relative;
  z-index: 1;
  word-break: 'break-all';

  &::after {
    content: '';
    width: 100px;
    display: inline-block;
    border-bottom: 1 px solid black;
  }
}
.arrow-icon {
  position: absolute;
  top: calc(50% - 12px);
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 1;
}

/*# sourceMappingURL=main.51065f71.css.map*/