@charset "UTF-8";
.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.cal-month-view .cal-cell-row {
  display: flex;
}
.cal-month-view .cal-cell {
  float: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cal-month-view .cal-cell .cal-event {
  pointer-events: all !important;
}
.cal-month-view .cal-day-cell {
  min-height: 100px;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  float: left;
}
.cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  display: flex;
  flex-wrap: wrap;
}
.cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.cal-month-view .cal-open-day-events {
  padding: 15px;
}
.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.cal-month-view .cal-draggable {
  cursor: move;
}
.cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.cal-month-view .cal-event-title {
  cursor: pointer;
}
.cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}

.cal-month-view {
  background-color: #fff;
}
.cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: initial;
  border-left-color: #e1e1e1;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-week-view * {
  box-sizing: border-box;
}
.cal-week-view .cal-day-headers {
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers {
  padding-left: initial;
  padding-right: 70px;
}
.cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: initial;
  border-right: 1px solid;
}
.cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left: initial;
  border-right: solid 1px;
}
.cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
  direction: ltr;
}
.cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.cal-week-view .cal-current-time-marker {
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 2;
}
.cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
  margin-left: initial;
  margin-right: 70px;
}
.cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: initial;
  border-bottom-left-radius: initial;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: initial;
  border-bottom-right-radius: initial;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.cal-week-view .cal-all-day-events .cal-time-label-column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: initial;
  left: 0;
}
.cal-week-view .cal-event,
.cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  display: flex;
}
.cal-week-view .cal-time-events .cal-day-columns {
  display: flex;
  flex-grow: 1;
}
.cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.cal-week-view .cal-time-events .cal-events-container {
  position: relative;
}
.cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.cal-week-view .cal-hour-segment {
  position: relative;
}
.cal-week-view .cal-hour-segment::after {
  content: " ";
}
.cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.cal-week-view .cal-draggable {
  cursor: move;
}
.cal-week-view mwl-calendar-week-view-hour-segment,
.cal-week-view .cal-hour-segment {
  display: block;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.cal-week-view {
  background-color: #fff;
  border-top: solid 1px #e1e1e1;
}
.cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
  border-top: 0;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: initial;
  border-left: solid 1px #e1e1e1 !important;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.cal-week-view .cal-current-time-marker {
  background-color: #ea4334;
}

.cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-day-view mwl-calendar-week-view-header {
  display: none;
}
.cal-day-view .cal-events-container {
  margin-left: 70px;
}
[dir=rtl] .cal-day-view .cal-events-container {
  margin-left: initial;
  margin-right: 70px;
}
.cal-day-view .cal-day-column {
  border-left: 0;
}
.cal-day-view .cal-current-time-marker {
  margin-left: 70px;
  width: calc(100% - 70px);
}
[dir=rtl] .cal-day-view .cal-current-time-marker {
  margin-left: initial;
  margin-right: 70px;
}

.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}

.cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}

.cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}

.cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}

.cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}

.cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}

.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}

.cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}

/*@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap&subset=latin-ext');*/

/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('pxiEyp8kv8JHgFVrJJbecmNE.87c72f23c47212b9.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('pxiEyp8kv8JHgFVrJJnecmNE.591327bf3b62a611.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('pxiEyp8kv8JHgFVrJJfecg.916d3686010a8de2.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLGT9Z11lFc-K.839135d04a097cea.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLGT9Z1JlFc-K.370d1cc320ec5619.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLGT9Z1xlFQ.7777133e901cd5ed.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLCz7Z11lFc-K.20b8b8f6f47c1e10.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLCz7Z1JlFc-K.f93b79c1ea023ab6.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('pxiByp8kv8JHgFVrLCz7Z1xlFQ.9a881e2ac07d406b.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">*/

                                                                                                                                   /* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fCRc4EsA.cd7c57150098aa46.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fABc4EsA.8879841235d1038b.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fCBc4EsA.bc5ce7039b793526.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fBxc4EsA.25dc89b086bd298c.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fCxc4EsA.b3d3e96016c7cf4b.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fChc4EsA.37d4965de9e08156.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('KFOlCnqEu92Fr1MmSU5fBBc4.a4eae32d320f45e6.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu72xKOzY.d7827ae32eeaf2a2.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu5mxKOzY.2d9c9d60987f55b3.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu7mxKOzY.2b547ded99644dd7.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu4WxKOzY.63e6dc182bc99716.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu7WxKOzY.c95fc061f1b36d6b.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu7GxKOzY.21abc8c8d8fbf6be.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('KFOmCnqEu92Fr1Mu4mxK.f2894edcf7d09d36.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fCRc4EsA.a1b5c90de241a056.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fABc4EsA.aa68ea542b48a213.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fCBc4EsA.7ea6cffa7d138319.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fBxc4EsA.533b03d2a55a1755.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fCxc4EsA.7f8c0554ba06f872.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fChc4EsA.85ebfb558a17f059.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('KFOlCnqEu92Fr1MmEU9fBBc4.3170fd9aa9258fe0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap&subset=latin-ext');*/


/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WRhyzbi.99e4dc5e0d8559e6.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459W1hyzbi.5f0f53ad87cfa168.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WZhyzbi.3e87d9f2ebe9fbda.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wdhyzbi.51438cf5de270cde.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wlhyw.8b8e383f71ec584f.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WRhyzbi.99e4dc5e0d8559e6.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459W1hyzbi.5f0f53ad87cfa168.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WZhyzbi.3e87d9f2ebe9fbda.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wdhyzbi.51438cf5de270cde.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wlhyw.8b8e383f71ec584f.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WRhyzbi.99e4dc5e0d8559e6.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459W1hyzbi.5f0f53ad87cfa168.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459WZhyzbi.3e87d9f2ebe9fbda.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wdhyzbi.51438cf5de270cde.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('JTUSjIg1_i6t8kCHKm459Wlhyw.8b8e383f71ec584f.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">*/

                                                                                                                                   /* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('flUhRq6tzZclQEJ-Vdg-IuiaDsNc.59322316b3fd6063.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}

/*<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />*/

                                                                                                                                   /* fallback */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url('kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDCvHOej.e668130db0c9733c.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}



.reinvented-color-wheel,.reinvented-color-wheel--hue-handle,.reinvented-color-wheel--hue-wheel,.reinvented-color-wheel--sv-handle,.reinvented-color-wheel--sv-space{touch-action:manipulation;touch-action:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;user-select:none}.reinvented-color-wheel{position:relative;display:inline-block;line-height:0;border-radius:50%}.reinvented-color-wheel--hue-wheel{border-radius:50%}.reinvented-color-wheel--sv-space{position:absolute;left:0;top:0;right:0;bottom:0;margin:auto}.reinvented-color-wheel--hue-handle,.reinvented-color-wheel--sv-handle{position:absolute;box-sizing:border-box;border-radius:50%;border:2px solid #fff;box-shadow:0 0 0 1px #000 inset}.reinvented-color-wheel--hue-handle{pointer-events:none}
@media screen and (max-width: 959.98px) {
  .jz-hide-lt-gt-sm {
    display: none !important;
  }
}
@media screen and (max-width: 1279.98px) {
  .jz-hide-lt-gt-md {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .jz-hide-gt-md {
    display: none !important;
  }
}
@media screen and (max-width: 1439.98px) {
  .jz-hide-lt-lg-web-small {
    display: none !important;
  }
}
@media screen and (max-width: 959.98px) {
  .jz-column-lt-md {
    display: flex !important;
    flex-direction: column;
    box-sizing: border-box;
  }
}
.jz-flex-25 {
  flex: 1 1 25%;
  box-sizing: border-box;
  max-width: 25%;
}

.jz-flex {
  flex: 1 1 0%;
  box-sizing: border-box;
}

/* USAGE EXAMPLE
.class {
  width: 50%;
  @include media($from: "sm", $until: 900px, $and:"orientation: landscape"){
    width: 100%;
  }
}*/
.joyz-bright-theme .mat-headline-4, .mat-headline-3, .mat-headline-2 {
  margin: 0 !important;
}

::ng-deep .mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  --mat-form-field-outlined-container-shape: 8px;
}

body {
  margin: 0;
}

:focus {
  outline: 0;
}

.joyz-bright-theme {
  overflow: hidden;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  color: #333333;
  --mat-checkbox-selected-checkmark-color: whitesmoke;
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-unselected-hover-icon-color: #999;
  --mat-checkbox-unselected-focus-icon-color: #999;
  --mat-checkbox-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-hover-icon-color: #999;
  --mat-radio-unselected-focus-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: #999;
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-badge-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
.joyz-bright-theme .mat-h1,
.joyz-bright-theme .mat-headline-5,
.joyz-bright-theme .mat-typography .mat-h1,
.joyz-bright-theme .mat-typography .mat-headline-5,
.joyz-bright-theme .mat-typography h1 {
  font: 400 36px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.joyz-bright-theme .mat-h2,
.joyz-bright-theme .mat-headline-6,
.joyz-bright-theme .mat-typography .mat-h2,
.joyz-bright-theme .mat-typography .mat-headline-6,
.joyz-bright-theme .mat-typography h2 {
  font: 500 20px / 32px Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.joyz-bright-theme .mat-h3,
.joyz-bright-theme .mat-subtitle-1,
.joyz-bright-theme .mat-typography .mat-h3,
.joyz-bright-theme .mat-typography .mat-subtitle-1,
.joyz-bright-theme .mat-typography h3 {
  font: 400 16px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.joyz-bright-theme .mat-h4,
.joyz-bright-theme .mat-body-1,
.joyz-bright-theme .mat-typography .mat-h4,
.joyz-bright-theme .mat-typography .mat-body-1,
.joyz-bright-theme .mat-typography h4 {
  font: 400 14px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.joyz-bright-theme .mat-h5,
.joyz-bright-theme .mat-typography .mat-h5,
.joyz-bright-theme .mat-typography h5 {
  font: 400 calc(9px * 0.83) / 1.4 Poppins, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.joyz-bright-theme .mat-h6,
.joyz-bright-theme .mat-typography .mat-h6,
.joyz-bright-theme .mat-typography h6 {
  font: 400 calc(9px * 0.67) / 1.4 Poppins, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.joyz-bright-theme .mat-body-strong,
.joyz-bright-theme .mat-subtitle-2,
.joyz-bright-theme .mat-typography .mat-body-strong,
.joyz-bright-theme .mat-typography .mat-subtitle-2 {
  font: 500 12px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.joyz-bright-theme .mat-body,
.joyz-bright-theme .mat-body-2,
.joyz-bright-theme .mat-typography .mat-body,
.joyz-bright-theme .mat-typography .mat-body-2,
.joyz-bright-theme .mat-typography {
  font: 400 9px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.joyz-bright-theme .mat-body p,
.joyz-bright-theme .mat-body-2 p,
.joyz-bright-theme .mat-typography .mat-body p,
.joyz-bright-theme .mat-typography .mat-body-2 p,
.joyz-bright-theme .mat-typography p {
  margin: 0 0 12px;
}
.joyz-bright-theme .mat-small,
.joyz-bright-theme .mat-caption,
.joyz-bright-theme .mat-typography .mat-small,
.joyz-bright-theme .mat-typography .mat-caption {
  font: 500 11px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.joyz-bright-theme .mat-headline-1,
.joyz-bright-theme .mat-typography .mat-headline-1 {
  font: 300 62px / 62px Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}
.joyz-bright-theme .mat-headline-2,
.joyz-bright-theme .mat-typography .mat-headline-2 {
  font: 400 32px / 56px Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}
.joyz-bright-theme .mat-headline-3,
.joyz-bright-theme .mat-typography .mat-headline-3 {
  font: 400 26px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}
.joyz-bright-theme .mat-headline-4,
.joyz-bright-theme .mat-typography .mat-headline-4 {
  font: 400 22px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.joyz-bright-theme {
  --mat-bottom-sheet-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.4;
  --mat-bottom-sheet-container-text-size: 9px;
  --mat-bottom-sheet-container-text-tracking: normal;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-button-filled-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-filled-label-text-size: 14px;
  --mat-button-filled-label-text-tracking: normal;
  --mat-button-filled-label-text-transform: none;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-outlined-label-text-size: 14px;
  --mat-button-outlined-label-text-tracking: normal;
  --mat-button-outlined-label-text-transform: none;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-protected-label-text-size: 14px;
  --mat-button-protected-label-text-tracking: normal;
  --mat-button-protected-label-text-transform: none;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-text-label-text-size: 14px;
  --mat-button-text-label-text-tracking: normal;
  --mat-button-text-label-text-transform: none;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-tonal-label-text-size: 14px;
  --mat-button-tonal-label-text-tracking: normal;
  --mat-button-tonal-label-text-transform: none;
  --mat-button-tonal-label-text-weight: 500;
  --mat-button-toggle-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-toggle-label-text-line-height: 1.4;
  --mat-button-toggle-label-text-size: 14px;
  --mat-button-toggle-label-text-tracking: normal;
  --mat-button-toggle-label-text-weight: 400;
  --mat-button-toggle-legacy-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-toggle-legacy-label-text-line-height: 1.4;
  --mat-button-toggle-legacy-label-text-size: 14px;
  --mat-button-toggle-legacy-label-text-tracking: normal;
  --mat-button-toggle-legacy-label-text-weight: 400;
  --mat-card-title-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-card-subtitle-text-line-height: 1.4;
  --mat-card-subtitle-text-size: 12px;
  --mat-card-subtitle-text-tracking: normal;
  --mat-card-subtitle-text-weight: 500;
  --mat-checkbox-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-checkbox-label-text-line-height: 1.4;
  --mat-checkbox-label-text-size: 9px;
  --mat-checkbox-label-text-tracking: normal;
  --mat-checkbox-label-text-weight: 400;
  --mat-table-header-headline-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-table-header-headline-line-height: 1.4;
  --mat-table-header-headline-size: 12px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: normal;
  --mat-table-row-item-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-table-row-item-label-text-line-height: 1.4;
  --mat-table-row-item-label-text-size: 9px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: normal;
  --mat-table-footer-supporting-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.4;
  --mat-table-footer-supporting-text-size: 9px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: normal;
  --mat-datepicker-calendar-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
  --mat-dialog-subhead-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-dialog-subhead-line-height: 32px;
  --mat-dialog-subhead-size: 20px;
  --mat-dialog-subhead-weight: 500;
  --mat-dialog-subhead-tracking: normal;
  --mat-dialog-supporting-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-dialog-supporting-text-line-height: 1.4;
  --mat-dialog-supporting-text-size: 14px;
  --mat-dialog-supporting-text-weight: 400;
  --mat-dialog-supporting-text-tracking: normal;
  --mat-expansion-header-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-expansion-header-text-size: 12px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-expansion-container-text-line-height: 1.4;
  --mat-expansion-container-text-size: 9px;
  --mat-expansion-container-text-tracking: normal;
  --mat-expansion-container-text-weight: 400;
  --mat-grid-list-tile-header-primary-text-size: 9px;
  --mat-grid-list-tile-header-secondary-text-size: 11px;
  --mat-grid-list-tile-footer-primary-text-size: 9px;
  --mat-grid-list-tile-footer-secondary-text-size: 11px;
  --mat-paginator-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-paginator-container-text-line-height: 1.4;
  --mat-paginator-container-text-size: 11px;
  --mat-paginator-container-text-tracking: normal;
  --mat-paginator-container-text-weight: 500;
  --mat-paginator-select-trigger-text-size: 11px;
  --mat-radio-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-radio-label-text-line-height: 1.4;
  --mat-radio-label-text-size: 9px;
  --mat-radio-label-text-tracking: normal;
  --mat-radio-label-text-weight: 400;
  --mat-slide-toggle-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-slide-toggle-label-text-line-height: 1.4;
  --mat-slide-toggle-label-text-size: 9px;
  --mat-slide-toggle-label-text-tracking: normal;
  --mat-slide-toggle-label-text-weight: 400;
}
.joyz-bright-theme .mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-slide-toggle-label-text-line-height: 1.4;
  --mat-slide-toggle-label-text-size: 9px;
  --mat-slide-toggle-label-text-tracking: normal;
  --mat-slide-toggle-label-text-weight: 400;
}
.joyz-bright-theme {
  --mat-stepper-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-stepper-header-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-stepper-header-label-text-size: 9px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
.joyz-bright-theme .mat-mdc-tab-header {
  --mat-tab-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-tab-label-text-size: 14px;
  --mat-tab-label-text-tracking: normal;
  --mat-tab-label-text-line-height: 1.4;
  --mat-tab-label-text-weight: 500;
}
.joyz-bright-theme {
  --mat-toolbar-title-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 500;
  --mat-list-list-item-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-list-list-item-label-text-line-height: 1.4;
  --mat-list-list-item-label-text-size: 14px;
  --mat-list-list-item-label-text-tracking: normal;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-list-list-item-supporting-text-line-height: 1.4;
  --mat-list-list-item-supporting-text-size: 9px;
  --mat-list-list-item-supporting-text-tracking: normal;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-list-list-item-trailing-supporting-text-line-height: 1.4;
  --mat-list-list-item-trailing-supporting-text-size: 11px;
  --mat-list-list-item-trailing-supporting-text-tracking: normal;
  --mat-list-list-item-trailing-supporting-text-weight: 500;
}
.joyz-bright-theme .mdc-list-group__subheader {
  font: 400 16px / 1.4 Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.joyz-bright-theme {
  --mat-tree-node-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-tree-node-text-size: 9px;
  --mat-tree-node-text-weight: 400;
}
.joyz-bright-theme .mat-ripple {
  overflow: hidden;
  position: relative;
}
.joyz-bright-theme .mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.joyz-bright-theme .mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.joyz-bright-theme .mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface) 10%, transparent));
}
@media (forced-colors: active) {
  .joyz-bright-theme .mat-ripple-element {
    display: none;
  }
}
.cdk-drag-preview .joyz-bright-theme .mat-ripple-element, .cdk-drag-placeholder .joyz-bright-theme .mat-ripple-element {
  display: none;
}
.joyz-bright-theme .cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .joyz-bright-theme .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.joyz-bright-theme .cdk-overlay-container, .joyz-bright-theme .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.joyz-bright-theme .cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.joyz-bright-theme .cdk-overlay-container:empty {
  display: none;
}
.joyz-bright-theme .cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.joyz-bright-theme .cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.joyz-bright-theme .cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  touch-action: manipulation;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .joyz-bright-theme .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.joyz-bright-theme .cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .joyz-bright-theme .cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.joyz-bright-theme .cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.joyz-bright-theme .cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.joyz-bright-theme .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing, .cdk-high-contrast-active .joyz-bright-theme .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.joyz-bright-theme .cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.joyz-bright-theme .cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.joyz-bright-theme .cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.joyz-bright-theme .cdk-overlay-popover {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  overflow: visible;
  position: fixed;
  pointer-events: none;
  white-space: normal;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  inset: auto;
  top: 0;
  left: 0;
}
.joyz-bright-theme .cdk-overlay-popover::backdrop {
  display: none;
}
.joyz-bright-theme .cdk-overlay-popover .cdk-overlay-backdrop {
  position: fixed;
  z-index: auto;
}
.joyz-bright-theme textarea.cdk-textarea-autosize {
  resize: none;
}
.joyz-bright-theme textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
.joyz-bright-theme textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.joyz-bright-theme .cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.joyz-bright-theme .cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.joyz-bright-theme .mat-mdc-card {
  font-family: Poppins, "Helvetica Neue", sans-serif;
  --mat-card-title-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-card-subtitle-text-font: Poppins, "Helvetica Neue", sans-serif;
}
.joyz-bright-theme .mat-mdc-card-content {
  font-size: 9px;
}
.joyz-bright-theme .mat-mdc-card-subtitle {
  font-size: 9px;
  font-weight: 400;
  line-height: normal;
  margin: -8px 0 16px;
}
.joyz-bright-theme .mat-mdc-cell {
  font-size: 9px;
  line-height: normal;
}
.joyz-bright-theme {
  --mat-form-field-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-container-text-line-height: 1.4;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-tracking: normal;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 14px;
  --mat-form-field-subscript-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-subscript-text-line-height: 1.4;
  --mat-form-field-subscript-text-size: 11px;
  --mat-form-field-subscript-text-tracking: normal;
  --mat-form-field-subscript-text-weight: 500;
  --mat-form-field-filled-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-filled-label-text-size: 14px;
  --mat-form-field-filled-label-text-tracking: normal;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-form-field-outlined-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-outlined-label-text-size: 14px;
  --mat-form-field-outlined-label-text-tracking: normal;
  --mat-form-field-outlined-label-text-weight: 400;
}
.joyz-bright-theme .mat-mdc-form-field {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  --mat-form-field-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-line-height: 1.4;
  --mat-form-field-filled-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-filled-label-text-size: 14px;
  --mat-form-field-outlined-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-form-field-outlined-label-text-size: 14px;
  --mat-form-field-outlined-label-text-populated-size: 14px;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label {
  line-height: 1.4;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field__big {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  font-size: 18px;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-floating-label:not(.mdc-floating-label--float-above) {
  top: 0.3em;
  transform: none;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-appearance-outline:hover {
  --mat-form-field-outlined-outline-width: 2px;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-floating-label {
  position: absolute;
  top: 1em;
  margin-top: -0.25em;
  left: 13.5px;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-floating-label.mdc-floating-label--float-above {
  top: 1em;
  margin-top: -0.25em;
  transform: translateY(-1.1em) scale(0.75);
}
.joyz-bright-theme .mat-mdc-form-field:not(.mat-form-field-appearance-outline) .mat-mdc-floating-label.mdc-floating-label--float-above {
  top: 0.3em;
  transform: translateY(-100%) scale(0.75);
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-subscript-wrapper {
  height: 1.458em;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper {
  height: 1.808em;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-infix {
  padding: 0.3em 0;
  border-top: 1.05em solid transparent;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-prefix,
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-text-prefix {
  margin-top: 1.05em;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-form-field-infix {
  border-top: 1.05em solid transparent;
}
.joyz-bright-theme .mat-mdc-form-field {
  --mat-form-field-subscript-text-size: 0.75rem;
  --mat-form-field-subscript-text-line-height: 1.4;
  --mat-form-field-subscript-text-weight: 400;
}
.joyz-bright-theme .mat-mdc-form-field-error-wrapper {
  padding: 0;
}
.joyz-bright-theme .mat-mdc-form-field-icon-prefix,
.joyz-bright-theme .mat-mdc-form-field-icon-suffix {
  padding: 0;
}
.joyz-bright-theme .mat-mdc-form-field-icon-prefix .mat-icon,
.joyz-bright-theme .mat-mdc-form-field-icon-suffix .mat-icon {
  padding: 0;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-prefix .mat-icon,
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-suffix .mat-icon {
  font-size: 1.5em;
  width: 1em;
  line-height: 1.4;
  display: flex;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-prefix .mat-mdc-icon-button,
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-suffix .mat-mdc-icon-button {
  width: 1.5em;
  height: 1.5em;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-prefix .mat-mdc-icon-button .mat-icon,
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-icon-suffix .mat-mdc-icon-button .mat-icon {
  height: 1.4em;
  line-height: 1.4;
}
.joyz-bright-theme .mat-mdc-menu-item {
  font-family: Poppins, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.joyz-bright-theme .mat-mdc-select {
  font-family: Poppins, "Helvetica Neue", sans-serif;
  --mat-select-trigger-text-font: Poppins, "Helvetica Neue", sans-serif;
  font-size: inherit;
  line-height: inherit;
}
.joyz-bright-theme .mat-mdc-select-trigger {
  height: auto;
}
.joyz-bright-theme .mat-mdc-tooltip {
  --mat-tooltip-supporting-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-tooltip-supporting-text-size: 12px;
  --mat-tooltip-container-color: #999999;
  --mat-tooltip-supporting-text-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-tooltip .mdc-tooltip__surface {
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: normal;
}
.joyz-bright-theme .mat-mdc-tooltip.tooltip-main {
  --mat-tooltip-container-color: #ffea00;
  --mat-tooltip-supporting-text-color: #333333;
  margin-left: -5px;
}
.joyz-bright-theme .mat-mdc-tooltip.tooltip-main .mdc-tooltip__surface {
  box-shadow: 0 0 10px 0 rgba(51, 51, 51, 0.1);
}
.joyz-bright-theme .mat-mdc-tooltip.nav-tooltip {
  --mat-tooltip-container-color: #eeeeee;
  --mat-tooltip-supporting-text-color: #333333;
  --mat-tooltip-supporting-text-size: 14px;
  --mat-tooltip-supporting-text-weight: 500;
  opacity: 1;
}
.joyz-bright-theme .mat-mdc-tooltip.nav-tooltip .mdc-tooltip__surface {
  border-radius: 8px;
}
.joyz-bright-theme .mat-mdc-tooltip.crowd-list-tooltip {
  --mat-tooltip-container-color: #eeeeee;
  --mat-tooltip-supporting-text-color: #333333;
  --mat-tooltip-supporting-text-size: 14px;
  --mat-tooltip-supporting-text-weight: 500;
  opacity: 1;
  margin-left: 8px;
}
.joyz-bright-theme .mat-mdc-tooltip.crowd-list-tooltip .mdc-tooltip__surface {
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 8px;
}
.joyz-bright-theme textarea.mat-mdc-input-element {
  margin-top: 0;
}
.joyz-bright-theme .mat-mdc-list-item {
  font-family: Poppins, "Helvetica Neue", sans-serif;
}
.joyz-bright-theme .mat-mdc-list-base .mat-mdc-list-item {
  font-size: 16px;
  font-weight: 400;
}
.joyz-bright-theme .mat-expansion-panel-header {
  --mat-expansion-header-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 400;
}
.joyz-bright-theme .mat-mdc-paginator {
  --mat-paginator-container-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-paginator-container-text-size: 11px;
  --mat-paginator-select-trigger-text-size: 11px;
}
.joyz-bright-theme .mat-mdc-button, .joyz-bright-theme .mat-mdc-raised-button, .joyz-bright-theme .mat-mdc-icon-button, .joyz-bright-theme .mat-mdc-outlined-button,
.joyz-bright-theme .mat-mdc-unelevated-button, .joyz-bright-theme .mat-mdc-fab, .joyz-bright-theme .mat-mdc-mini-fab {
  font-family: Poppins, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.joyz-bright-theme .mat-mdc-fab,
.joyz-bright-theme .mat-mdc-mini-fab {
  line-height: 36px;
}
.joyz-bright-theme .mat-h1, .joyz-bright-theme .mat-headline-5, .joyz-bright-theme h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
@media (max-width: 1440px) {
  .joyz-bright-theme .mat-h1, .joyz-bright-theme .mat-headline-5, .joyz-bright-theme h1 {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  .joyz-bright-theme .mat-h1, .joyz-bright-theme .mat-headline-5, .joyz-bright-theme h1 {
    font-size: 24px;
  }
}
.joyz-bright-theme .mat-h3, .joyz-bright-theme .mat-subtitle-1, .joyz-bright-theme h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0;
}
@media (max-width: 1440px) {
  .joyz-bright-theme .mat-h3, .joyz-bright-theme .mat-subtitle-1, .joyz-bright-theme h3 {
    font-size: 14px;
  }
}
.joyz-bright-theme .mat-h4, .joyz-bright-theme .mat-body-1, .joyz-bright-theme h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  font-family: Poppins, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
@media (max-width: 1440px) {
  .joyz-bright-theme .mat-headline-4 {
    font-size: 18px;
  }
}
.joyz-bright-theme {
  --mat-app-background-color: #f5f5f5;
  --mat-app-text-color: rgba(51, 51, 51, 0.87);
  --mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-option-selected-state-label-text-color: #6750a4;
  --mat-option-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
}
.joyz-bright-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #635b72;
  --mat-option-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
}
.joyz-bright-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #ba1a1a;
  --mat-option-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
}
.joyz-bright-theme {
  --mat-optgroup-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-pseudo-checkbox-full-selected-icon-color: #635b72;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-unselected-icon-color: #999;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #635b72;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
}
.joyz-bright-theme .mat-primary {
  --mat-pseudo-checkbox-full-selected-icon-color: #6750a4;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-unselected-icon-color: #999;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #6750a4;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
}
.joyz-bright-theme .mat-accent {
  --mat-pseudo-checkbox-full-selected-icon-color: #635b72;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-unselected-icon-color: #999;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #635b72;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
}
.joyz-bright-theme .mat-warn {
  --mat-pseudo-checkbox-full-selected-icon-color: #ba1a1a;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-unselected-icon-color: #999;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #f5f5f5;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #ba1a1a;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
}
.joyz-bright-theme {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: white;
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
  --mat-badge-background-color: #6750a4;
  --mat-badge-text-color: #ffffff;
  --mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
}
.joyz-bright-theme .mat-badge-accent {
  --mat-badge-background-color: #635b72;
  --mat-badge-text-color: #ffffff;
}
.joyz-bright-theme .mat-badge-warn {
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-text-color: #ffffff;
}
.joyz-bright-theme {
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: rgba(51, 51, 51, 0.87);
  --mat-bottom-sheet-container-background-color: white;
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(51, 51, 51, 0.93);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(51, 51, 51, 0.87);
  --mat-expansion-actions-divider-color: rgba(51, 51, 51, 0.93);
  --mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-expansion-header-text-color: rgba(51, 51, 51, 0.87);
  --mat-expansion-header-description-color: #999;
  --mat-expansion-header-indicator-color: #999;
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
  --mat-icon-color: inherit;
}
.joyz-bright-theme .mat-icon.mat-primary {
  --mat-icon-color: #6750a4;
}
.joyz-bright-theme .mat-icon.mat-accent {
  --mat-icon-color: #635b72;
}
.joyz-bright-theme .mat-icon.mat-warn {
  --mat-icon-color: #ba1a1a;
}
.joyz-bright-theme mat-icon[svgIcon=joyz-arrow_down] {
  max-width: 20px;
}
.joyz-bright-theme {
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mat-list-list-item-container-shape: 0;
  --mat-list-list-item-leading-avatar-shape: 50%;
  --mat-list-list-item-container-color: transparent;
  --mat-list-list-item-selected-container-color: transparent;
  --mat-list-list-item-leading-avatar-color: transparent;
  --mat-list-list-item-leading-icon-size: 24px;
  --mat-list-list-item-leading-avatar-size: 40px;
  --mat-list-list-item-trailing-icon-size: 24px;
  --mat-list-list-item-disabled-state-layer-color: transparent;
  --mat-list-list-item-disabled-state-layer-opacity: 0;
  --mat-list-list-item-disabled-label-text-opacity: 0.38;
  --mat-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mat-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-list-item-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-supporting-text-color: #999;
  --mat-list-list-item-leading-icon-color: #999;
  --mat-list-list-item-trailing-supporting-text-color: #999;
  --mat-list-list-item-trailing-icon-color: #999;
  --mat-list-list-item-selected-trailing-icon-color: #999;
  --mat-list-list-item-disabled-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-disabled-leading-icon-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-disabled-trailing-icon-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-hover-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-hover-leading-icon-color: #999;
  --mat-list-list-item-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-hover-state-layer-opacity: 0.04;
  --mat-list-list-item-hover-trailing-icon-color: #999;
  --mat-list-list-item-focus-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-list-list-item-focus-state-layer-opacity: 0.12;
}
.joyz-bright-theme .mdc-list-item__start,
.joyz-bright-theme .mdc-list-item__end {
  --mat-radio-checked-ripple-color: #6750a4;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #6750a4;
  --mat-radio-selected-hover-icon-color: #6750a4;
  --mat-radio-selected-icon-color: #6750a4;
  --mat-radio-selected-pressed-icon-color: #6750a4;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-accent .mdc-list-item__start,
.joyz-bright-theme .mat-accent .mdc-list-item__end {
  --mat-radio-checked-ripple-color: #635b72;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #635b72;
  --mat-radio-selected-hover-icon-color: #635b72;
  --mat-radio-selected-icon-color: #635b72;
  --mat-radio-selected-pressed-icon-color: #635b72;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-warn .mdc-list-item__start,
.joyz-bright-theme .mat-warn .mdc-list-item__end {
  --mat-radio-checked-ripple-color: #ba1a1a;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #ba1a1a;
  --mat-radio-selected-hover-icon-color: #ba1a1a;
  --mat-radio-selected-icon-color: #ba1a1a;
  --mat-radio-selected-pressed-icon-color: #ba1a1a;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-list-option {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #6750a4;
  --mat-checkbox-selected-hover-icon-color: #6750a4;
  --mat-checkbox-selected-icon-color: #6750a4;
  --mat-checkbox-selected-pressed-icon-color: #6750a4;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #6750a4;
  --mat-checkbox-selected-hover-state-layer-color: #6750a4;
  --mat-checkbox-selected-pressed-state-layer-color: #6750a4;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-list-option.mat-accent {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #635b72;
  --mat-checkbox-selected-hover-icon-color: #635b72;
  --mat-checkbox-selected-icon-color: #635b72;
  --mat-checkbox-selected-pressed-icon-color: #635b72;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #635b72;
  --mat-checkbox-selected-hover-state-layer-color: #635b72;
  --mat-checkbox-selected-pressed-state-layer-color: #635b72;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-list-option.mat-warn {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #ba1a1a;
  --mat-checkbox-selected-hover-icon-color: #ba1a1a;
  --mat-checkbox-selected-icon-color: #ba1a1a;
  --mat-checkbox-selected-pressed-icon-color: #ba1a1a;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #ba1a1a;
  --mat-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mat-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.joyz-bright-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.joyz-bright-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.joyz-bright-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #6750a4;
}
.joyz-bright-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.joyz-bright-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.joyz-bright-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.joyz-bright-theme {
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
  --mat-list-list-item-one-line-container-height: 48px;
  --mat-list-list-item-two-line-container-height: 64px;
  --mat-list-list-item-three-line-container-height: 88px;
}
.joyz-bright-theme .mdc-list-item__start,
.joyz-bright-theme .mdc-list-item__end {
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
.joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
.joyz-bright-theme {
  --mat-radio-disabled-selected-icon-opacity: 0.38;
  --mat-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-size: 48px;
}
.joyz-bright-theme .mat-mdc-radio-button.mat-primary {
  --mat-radio-checked-ripple-color: #6750a4;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #6750a4;
  --mat-radio-selected-hover-icon-color: #6750a4;
  --mat-radio-selected-icon-color: #6750a4;
  --mat-radio-selected-pressed-icon-color: #6750a4;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-radio-button.mat-accent {
  --mat-radio-checked-ripple-color: #635b72;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #635b72;
  --mat-radio-selected-hover-icon-color: #635b72;
  --mat-radio-selected-icon-color: #635b72;
  --mat-radio-selected-pressed-icon-color: #635b72;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-radio-button.mat-warn {
  --mat-radio-checked-ripple-color: #ba1a1a;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-radio-ripple-color: rgba(51, 51, 51, 0.87);
  --mat-radio-selected-focus-icon-color: #ba1a1a;
  --mat-radio-selected-hover-icon-color: #ba1a1a;
  --mat-radio-selected-icon-color: #ba1a1a;
  --mat-radio-selected-pressed-icon-color: #ba1a1a;
  --mat-radio-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-radio-unselected-icon-color: #999;
  --mat-radio-unselected-pressed-icon-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme {
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
.joyz-bright-theme .mat-mdc-radio-button.mat-primary {
  --mat-radio-selected-icon-color: #6750a4;
  --mat-radio-selected-hover-icon-color: #6750a4;
  --mat-radio-selected-focus-icon-color: #6750a4;
  --mat-radio-selected-pressed-icon-color: #6750a4;
  --mat-radio-ripple-color: #6750a4;
  --mat-radio-checked-ripple-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-radio-button.mat-accent {
  --mat-radio-selected-icon-color: #635b72;
  --mat-radio-selected-hover-icon-color: #635b72;
  --mat-radio-selected-focus-icon-color: #635b72;
  --mat-radio-selected-pressed-icon-color: #635b72;
  --mat-radio-ripple-color: #635b72;
  --mat-radio-checked-ripple-color: #635b72;
}
.joyz-bright-theme .mat-mdc-radio-button.mat-warn {
  --mat-radio-selected-icon-color: #ba1a1a;
  --mat-radio-selected-hover-icon-color: #ba1a1a;
  --mat-radio-selected-focus-icon-color: #ba1a1a;
  --mat-radio-selected-pressed-icon-color: #ba1a1a;
  --mat-radio-ripple-color: #ba1a1a;
  --mat-radio-checked-ripple-color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-stepper-header-focus-state-layer-shape: 0;
  --mat-stepper-header-hover-state-layer-shape: 0;
  --mat-stepper-header-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-icon-background-color: #6750a4;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-done-state-icon-background-color: #6750a4;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #6750a4;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(51, 51, 51, 0.93);
  --mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-stepper-header-label-text-color: #999;
  --mat-stepper-header-optional-label-text-color: #999;
  --mat-stepper-header-selected-state-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-icon-background-color: #999;
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.joyz-bright-theme .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-icon-background-color: #635b72;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-done-state-icon-background-color: #635b72;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #635b72;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
}
.joyz-bright-theme .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-icon-background-color: #ba1a1a;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-done-state-icon-background-color: #ba1a1a;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #ba1a1a;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
}
.joyz-bright-theme {
  --mat-stepper-header-height: 72px;
  --mat-sort-arrow-color: rgba(51, 51, 51, 0.87);
  --mat-tab-container-height: 48px;
  --mat-tab-divider-color: transparent;
  --mat-tab-divider-height: 0;
  --mat-tab-active-indicator-height: 2px;
  --mat-tab-active-indicator-shape: 0;
}
.joyz-bright-theme .mat-mdc-tab-group,
.joyz-bright-theme .mat-mdc-tab-nav-bar {
  --mat-tab-disabled-ripple-color: #999;
  --mat-tab-pagination-icon-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-label-text-color: #999;
  --mat-tab-active-label-text-color: #6750a4;
  --mat-tab-active-ripple-color: #6750a4;
  --mat-tab-inactive-ripple-color: #6750a4;
  --mat-tab-inactive-focus-label-text-color: #999;
  --mat-tab-inactive-hover-label-text-color: #999;
  --mat-tab-active-focus-label-text-color: #6750a4;
  --mat-tab-active-hover-label-text-color: #6750a4;
  --mat-tab-active-focus-indicator-color: #6750a4;
  --mat-tab-active-hover-indicator-color: #6750a4;
  --mat-tab-active-indicator-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-tab-group.mat-accent,
.joyz-bright-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mat-tab-disabled-ripple-color: #999;
  --mat-tab-pagination-icon-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-label-text-color: #999;
  --mat-tab-active-label-text-color: #635b72;
  --mat-tab-active-ripple-color: #635b72;
  --mat-tab-inactive-ripple-color: #635b72;
  --mat-tab-inactive-focus-label-text-color: #999;
  --mat-tab-inactive-hover-label-text-color: #999;
  --mat-tab-active-focus-label-text-color: #635b72;
  --mat-tab-active-hover-label-text-color: #635b72;
  --mat-tab-active-focus-indicator-color: #635b72;
  --mat-tab-active-hover-indicator-color: #635b72;
  --mat-tab-active-indicator-color: #635b72;
}
.joyz-bright-theme .mat-mdc-tab-group.mat-warn,
.joyz-bright-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mat-tab-disabled-ripple-color: #999;
  --mat-tab-pagination-icon-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-label-text-color: #999;
  --mat-tab-active-label-text-color: #ba1a1a;
  --mat-tab-active-ripple-color: #ba1a1a;
  --mat-tab-inactive-ripple-color: #ba1a1a;
  --mat-tab-inactive-focus-label-text-color: #999;
  --mat-tab-inactive-hover-label-text-color: #999;
  --mat-tab-active-focus-label-text-color: #ba1a1a;
  --mat-tab-active-hover-label-text-color: #ba1a1a;
  --mat-tab-active-focus-indicator-color: #ba1a1a;
  --mat-tab-active-hover-indicator-color: #ba1a1a;
  --mat-tab-active-indicator-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-tab-group.mat-background-primary,
.joyz-bright-theme .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-background-color: #6750a4;
  --mat-tab-foreground-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-tab-group.mat-background-accent,
.joyz-bright-theme .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-background-color: #635b72;
  --mat-tab-foreground-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-tab-group.mat-background-warn,
.joyz-bright-theme .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-background-color: #ba1a1a;
  --mat-tab-foreground-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-tab-header {
  --mat-tab-container-height: 48px;
}
.joyz-bright-theme .mat-mdc-tab {
  min-width: 160px;
  --mat-tab-active-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-tab-active-hover-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-tab-active-focus-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-hover-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-tab-inactive-focus-label-text-color: rgba(51, 51, 51, 0.87);
  opacity: 0.6;
}
.joyz-bright-theme .mat-mdc-tab-header {
  border-bottom: 1px solid rgba(51, 51, 51, 0.93);
}
.joyz-bright-theme {
  --mat-toolbar-container-background-color: white;
  --mat-toolbar-container-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #6750a4;
  --mat-toolbar-container-text-color: #ffffff;
}
.joyz-bright-theme .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #635b72;
  --mat-toolbar-container-text-color: #ffffff;
}
.joyz-bright-theme .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #ba1a1a;
  --mat-toolbar-container-text-color: #ffffff;
}
.joyz-bright-theme {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-line-height: 16px;
  --mat-tooltip-container-color: #424242;
  --mat-tooltip-supporting-text-color: white;
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(51, 51, 51, 0.87);
  --mat-tree-node-min-height: 48px;
  --mat-button-filled-container-color: white;
  --mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-button-filled-disabled-state-layer-color: #999;
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.04;
  --mat-button-filled-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-filled-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-button-outlined-disabled-outline-color: rgba(51, 51, 51, 0.93);
  --mat-button-outlined-disabled-state-layer-color: #999;
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.04;
  --mat-button-outlined-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-outlined-outline-color: rgba(51, 51, 51, 0.93);
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-outlined-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-button-protected-container-color: white;
  --mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-button-protected-disabled-state-layer-color: #999;
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-hover-state-layer-opacity: 0.04;
  --mat-button-protected-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-protected-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-button-text-disabled-state-layer-color: #999;
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-hover-state-layer-opacity: 0.04;
  --mat-button-text-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-text-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-text-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-button-tonal-container-color: white;
  --mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-button-tonal-disabled-state-layer-color: #999;
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.04;
  --mat-button-tonal-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-button-tonal-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-button.mat-primary,
.joyz-bright-theme .mat-mdc-unelevated-button.mat-primary,
.joyz-bright-theme .mat-mdc-raised-button.mat-primary,
.joyz-bright-theme .mat-mdc-outlined-button.mat-primary,
.joyz-bright-theme .mat-tonal-button.mat-primary {
  --mat-button-filled-container-color: #6750a4;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-label-text-color: #6750a4;
  --mat-button-outlined-outline-color: rgba(51, 51, 51, 0.93);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #6750a4 12%, transparent);
  --mat-button-outlined-state-layer-color: #6750a4;
  --mat-button-protected-container-color: #6750a4;
  --mat-button-protected-label-text-color: #ffffff;
  --mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-protected-state-layer-color: #ffffff;
  --mat-button-text-label-text-color: #6750a4;
  --mat-button-text-ripple-color: color-mix(in srgb, #6750a4 12%, transparent);
  --mat-button-text-state-layer-color: #6750a4;
  --mat-button-tonal-container-color: #6750a4;
  --mat-button-tonal-label-text-color: #ffffff;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-tonal-state-layer-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-button.mat-accent,
.joyz-bright-theme .mat-mdc-unelevated-button.mat-accent,
.joyz-bright-theme .mat-mdc-raised-button.mat-accent,
.joyz-bright-theme .mat-mdc-outlined-button.mat-accent,
.joyz-bright-theme .mat-tonal-button.mat-accent {
  --mat-button-filled-container-color: #635b72;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-label-text-color: #635b72;
  --mat-button-outlined-outline-color: rgba(51, 51, 51, 0.93);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #635b72 12%, transparent);
  --mat-button-outlined-state-layer-color: #635b72;
  --mat-button-protected-container-color: #635b72;
  --mat-button-protected-label-text-color: #ffffff;
  --mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-protected-state-layer-color: #ffffff;
  --mat-button-text-label-text-color: #635b72;
  --mat-button-text-ripple-color: color-mix(in srgb, #635b72 12%, transparent);
  --mat-button-text-state-layer-color: #635b72;
  --mat-button-tonal-container-color: #635b72;
  --mat-button-tonal-label-text-color: #ffffff;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-tonal-state-layer-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-button.mat-warn,
.joyz-bright-theme .mat-mdc-unelevated-button.mat-warn,
.joyz-bright-theme .mat-mdc-raised-button.mat-warn,
.joyz-bright-theme .mat-mdc-outlined-button.mat-warn,
.joyz-bright-theme .mat-tonal-button.mat-warn {
  --mat-button-filled-container-color: #ba1a1a;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-label-text-color: #ba1a1a;
  --mat-button-outlined-outline-color: rgba(51, 51, 51, 0.93);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #ba1a1a 12%, transparent);
  --mat-button-outlined-state-layer-color: #ba1a1a;
  --mat-button-protected-container-color: #ba1a1a;
  --mat-button-protected-label-text-color: #ffffff;
  --mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-protected-state-layer-color: #ffffff;
  --mat-button-text-label-text-color: #ba1a1a;
  --mat-button-text-ripple-color: color-mix(in srgb, #ba1a1a 12%, transparent);
  --mat-button-text-state-layer-color: #ba1a1a;
  --mat-button-tonal-container-color: #ba1a1a;
  --mat-button-tonal-label-text-color: #ffffff;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-tonal-state-layer-color: #ffffff;
}
.joyz-bright-theme {
  --mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-icon-button-disabled-state-layer-color: #999;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-icon-color: inherit;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-ripple-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-icon-button-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-icon-button.mat-primary {
  --mat-icon-button-icon-color: #6750a4;
  --mat-icon-button-state-layer-color: #6750a4;
  --mat-icon-button-ripple-color: color-mix(in srgb, #6750a4 12%, transparent);
}
.joyz-bright-theme .mat-mdc-icon-button.mat-accent {
  --mat-icon-button-icon-color: #635b72;
  --mat-icon-button-state-layer-color: #635b72;
  --mat-icon-button-ripple-color: color-mix(in srgb, #635b72 12%, transparent);
}
.joyz-bright-theme .mat-mdc-icon-button.mat-warn {
  --mat-icon-button-icon-color: #ba1a1a;
  --mat-icon-button-state-layer-color: #ba1a1a;
  --mat-icon-button-ripple-color: color-mix(in srgb, #ba1a1a 12%, transparent);
}
.joyz-bright-theme .mat-mdc-button,
.joyz-bright-theme .mat-mdc-unelevated-button,
.joyz-bright-theme .mat-mdc-outlined-button,
.joyz-bright-theme .mat-mdc-raised-button {
  height: auto;
  --mat-button-text-container-shape: 4px;
  --mat-button-filled-container-shape: 4px;
  --mat-button-outlined-container-shape: 4px;
  --mat-button-protected-container-shape: 4px;
  letter-spacing: normal;
  vertical-align: baseline;
  min-width: 64px;
  padding: 0 16px;
  line-height: 36px;
  white-space: nowrap;
}
.joyz-bright-theme .mat-mdc-outlined-button {
  padding: 0 15px;
  line-height: 34px;
}
.joyz-bright-theme .mat-mdc-icon-button {
  --mat-icon-button-state-layer-size: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  vertical-align: baseline;
  font-size: 14px;
  font-weight: 500;
}
.joyz-bright-theme .mat-mdc-icon-button i,
.joyz-bright-theme .mat-mdc-icon-button .mat-icon {
  line-height: 24px;
}
.joyz-bright-theme .mat-mdc-button-base {
  --mat-button-text-hover-state-layer-opacity: 0.04;
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.04;
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.04;
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-hover-state-layer-opacity: 0.04;
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.04;
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
}
.joyz-bright-theme .mat-mdc-button-base .mat-icon {
  min-height: 0;
}
.joyz-bright-theme .mat-mdc-button[disabled][disabled],
.joyz-bright-theme .mat-mdc-unelevated-button[disabled][disabled],
.joyz-bright-theme .mat-mdc-outlined-button[disabled][disabled],
.joyz-bright-theme .mat-mdc-raised-button[disabled][disabled],
.joyz-bright-theme .mat-mdc-icon-button[disabled][disabled] {
  --mat-button-filled-disabled-container-color: rgba(103, 80, 164, 0.2);
  --mat-button-filled-disabled-label-text-color: rgba(51, 51, 51, 0.12);
  --mat-button-protected-disabled-container-color: rgba(103, 80, 164, 0.2);
  --mat-button-protected-disabled-label-text-color: rgba(51, 51, 51, 0.12);
  --mat-button-text-disabled-label-text-color: rgba(51, 51, 51, 0.12);
  --mat-button-outlined-disabled-label-text-color: rgba(51, 51, 51, 0.12);
  --mat-button-outlined-disabled-outline-color: rgba(51, 51, 51, 0.12);
  --mat-icon-button-disabled-icon-color: rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-mdc-button, .joyz-bright-theme .mat-mdc-icon-button, .joyz-bright-theme .mat-mdc-outlined-button {
  color: inherit;
  background: transparent;
  --mat-button-text-state-layer-color: #333333;
  --mat-button-outlined-state-layer-color: #333333;
  --mat-icon-button-state-layer-color: #333333;
  --mat-button-text-ripple-color: rgba(51, 51, 51, 0.1);
  --mat-button-outlined-ripple-color: rgba(51, 51, 51, 0.1);
  --mat-icon-button-ripple-color: rgba(51, 51, 51, 0.1);
}
.joyz-bright-theme .mat-mdc-button.joyz-inverted, .joyz-bright-theme .mat-mdc-icon-button.joyz-inverted, .joyz-bright-theme .mat-mdc-outlined-button.joyz-inverted {
  background-color: white;
}
.joyz-bright-theme .mat-mdc-unelevated-button.pagenav-tab-action {
  background-color: #FED480;
  border-radius: 8px;
  height: 48px;
  font-weight: 500;
}
.joyz-bright-theme .mat-mdc-unelevated-button.pagenav-tab-action:disabled {
  background-color: #d5b770;
}
.joyz-bright-theme .mat-mdc-unelevated-button.pagenav-tab-action-secondary {
  background-color: #424242;
  border-radius: 8px;
  height: 48px;
  font-weight: 500;
}
.joyz-bright-theme .mat-mdc-unelevated-button.pagenav-tab-action-secondary:disabled {
  background-color: #424242;
}
.joyz-bright-theme .mat-mdc-outlined-button.pagenav-tab-action {
  border-width: 1.5px;
  background-color: transparent;
  border-radius: 8px;
  height: 48px;
  font-weight: 500;
}
.joyz-bright-theme .mat-mdc-button > .mat-icon,
.joyz-bright-theme .mat-mdc-unelevated-button > .mat-icon,
.joyz-bright-theme .mat-mdc-outlined-button > .mat-icon,
.joyz-bright-theme .mat-mdc-raised-button > .mat-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 0;
}
.joyz-bright-theme .mat-mdc-button > .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-unelevated-button > .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-outlined-button > .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-raised-button > .mdc-button__label:not(:empty) {
  flex: 1 1 auto;
  min-width: 0;
}
.joyz-bright-theme .mat-mdc-button > .mat-icon + .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-unelevated-button > .mat-icon + .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-outlined-button > .mat-icon + .mdc-button__label:not(:empty),
.joyz-bright-theme .mat-mdc-raised-button > .mat-icon + .mdc-button__label:not(:empty) {
  padding-left: 4px;
}
.joyz-bright-theme .mat-mdc-button .mat-icon svg,
.joyz-bright-theme .mat-mdc-unelevated-button .mat-icon svg,
.joyz-bright-theme .mat-mdc-outlined-button .mat-icon svg,
.joyz-bright-theme .mat-mdc-raised-button .mat-icon svg,
.joyz-bright-theme .mat-mdc-fab .mat-icon svg,
.joyz-bright-theme .mat-mdc-mini-fab .mat-icon svg {
  display: block;
}
.joyz-bright-theme .mat-mdc-icon-button .mat-icon svg,
.joyz-bright-theme .mat-mdc-icon-button .mat-icon img {
  width: 100%;
  height: 100%;
}
.joyz-bright-theme .mat-mdc-button.mat-unthemed,
.joyz-bright-theme .mat-mdc-icon-button.mat-unthemed,
.joyz-bright-theme .mat-mdc-outlined-button.mat-unthemed {
  --mat-button-text-label-text-color: inherit;
  --mat-button-outlined-label-text-color: inherit;
  --mat-icon-button-icon-color: inherit;
}
.joyz-bright-theme .mat-mdc-unelevated-button.mat-unthemed,
.joyz-bright-theme .mat-mdc-raised-button.mat-unthemed {
  --mat-button-filled-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-protected-label-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-unelevated-button,
.joyz-bright-theme .mat-mdc-raised-button {
  --mat-button-filled-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-button-protected-label-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-button.mat-primary,
.joyz-bright-theme .mat-mdc-outlined-button.mat-primary,
.joyz-bright-theme .mat-mdc-icon-button.mat-primary {
  --mat-button-text-label-text-color: #6750a4;
  --mat-button-outlined-label-text-color: #6750a4;
  --mat-icon-button-icon-color: #6750a4;
  --mat-button-text-state-layer-color: #6750a4;
  --mat-button-outlined-state-layer-color: #6750a4;
  --mat-icon-button-state-layer-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-button.mat-accent,
.joyz-bright-theme .mat-mdc-outlined-button.mat-accent,
.joyz-bright-theme .mat-mdc-icon-button.mat-accent {
  --mat-button-text-label-text-color: #635b72;
  --mat-button-outlined-label-text-color: #635b72;
  --mat-icon-button-icon-color: #635b72;
  --mat-button-text-state-layer-color: #635b72;
  --mat-button-outlined-state-layer-color: #635b72;
  --mat-icon-button-state-layer-color: #635b72;
}
.joyz-bright-theme .mat-mdc-button.mat-warn,
.joyz-bright-theme .mat-mdc-outlined-button.mat-warn,
.joyz-bright-theme .mat-mdc-icon-button.mat-warn {
  --mat-button-text-label-text-color: #ba1a1a;
  --mat-button-outlined-label-text-color: #ba1a1a;
  --mat-icon-button-icon-color: #ba1a1a;
  --mat-button-text-state-layer-color: #ba1a1a;
  --mat-button-outlined-state-layer-color: #ba1a1a;
  --mat-icon-button-state-layer-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-unelevated-button.mat-primary,
.joyz-bright-theme .mat-mdc-raised-button.mat-primary {
  --mat-button-filled-container-color: #6750a4;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-protected-container-color: #6750a4;
  --mat-button-protected-label-text-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-unelevated-button.mat-accent,
.joyz-bright-theme .mat-mdc-raised-button.mat-accent {
  --mat-button-filled-container-color: #635b72;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-protected-container-color: #635b72;
  --mat-button-protected-label-text-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-unelevated-button.mat-warn,
.joyz-bright-theme .mat-mdc-raised-button.mat-warn {
  --mat-button-filled-container-color: #ba1a1a;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-protected-container-color: #ba1a1a;
  --mat-button-protected-label-text-color: #ffffff;
}
.joyz-bright-theme .mat-mdc-unelevated-button.mat-mdc-outlined-button {
  --mat-button-outlined-label-text-color: var(--mat-button-filled-label-text-color);
}
.joyz-bright-theme .mat-mdc-outlined-button {
  --mat-button-outlined-outline-color: #424242;
}
.joyz-bright-theme .mat-button:not(.mat-mdc-button) {
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  overflow: visible;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  background: transparent;
}
.joyz-bright-theme ui-joyz-button-panel button.mat-mdc-button, .joyz-bright-theme ui-joyz-button-panel button.mat-mdc-outlined-button, .joyz-bright-theme ui-joyz-button-panel button.mat-mdc-unelevated-button {
  display: flex;
  border-radius: 8px;
  text-transform: uppercase;
  height: 48px;
}
.joyz-bright-theme .mat-mdc-button > *,
.joyz-bright-theme .mat-mdc-button > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-raised-button > *,
.joyz-bright-theme .mat-mdc-raised-button > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-icon-button > *,
.joyz-bright-theme .mat-mdc-icon-button > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-outlined-button > *,
.joyz-bright-theme .mat-mdc-outlined-button > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-unelevated-button > *,
.joyz-bright-theme .mat-mdc-unelevated-button > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-fab > *,
.joyz-bright-theme .mat-mdc-fab > .mdc-button__label > *,
.joyz-bright-theme .mat-mdc-mini-fab > *,
.joyz-bright-theme .mat-mdc-mini-fab > .mdc-button__label > * {
  vertical-align: middle;
}
.joyz-bright-theme .mat-mdc-fab,
.joyz-bright-theme .mat-mdc-mini-fab {
  --mat-fab-container-shape: 50%;
  --mat-fab-small-container-shape: 50%;
  --mat-fab-foreground-color: #ffffff;
  --mat-fab-small-foreground-color: #ffffff;
  box-shadow: 0px 3px 5px -1px rgba(51, 51, 51, 0.2), 0px 6px 10px 0px rgba(51, 51, 51, 0.14), 0px 1px 18px 0px rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-button-toggle-appearance-standard {
  --mat-button-toggle-background-color: white;
  --mat-button-toggle-label-text-font: Poppins, "Helvetica Neue", sans-serif;
  --mat-button-toggle-label-text-line-height: 36px;
  --mat-button-toggle-text-color: #333333;
  --mat-button-toggle-selected-state-background-color: #6750a4;
  --mat-button-toggle-selected-state-text-color: #ffffff;
  --mat-button-toggle-disabled-state-background-color: white;
  --mat-button-toggle-disabled-state-text-color: rgba(51, 51, 51, 0.12);
  --mat-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-button-toggle-divider-color: rgba(51, 51, 51, 0.93);
}
.joyz-bright-theme .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.joyz-bright-theme .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.joyz-bright-theme .mat-button-toggle {
  margin: 0 8px;
  border: 1px solid rgba(51, 51, 51, 0.93);
  border-radius: 8px;
  opacity: 0.5;
}
.joyz-bright-theme .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.joyz-bright-theme .mat-button-toggle-appearance-standard {
  color: #333333;
  background: white;
}
.joyz-bright-theme .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px;
  padding: 0 15px;
}
.joyz-bright-theme .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.joyz-bright-theme .mat-button-toggle-checked {
  background-color: #6750a4;
  border-color: #6750a4;
  color: #ffffff;
  opacity: 1;
}
.joyz-bright-theme .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: #ffffff;
}
.joyz-bright-theme .mat-button-toggle-disabled {
  color: rgba(51, 51, 51, 0.12);
  background-color: #eeeeee;
}
.joyz-bright-theme .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.joyz-bright-theme .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}
.joyz-bright-theme .mat-button-toggle-checkbox-wrapper {
  display: none;
}
.joyz-bright-theme .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper) {
  padding-left: 0;
  padding-right: 0;
}
.joyz-bright-theme {
  --mat-card-elevated-container-shape: 4px;
  --mat-card-outlined-container-shape: 4px;
  --mat-card-filled-container-shape: 4px;
  --mat-card-outlined-outline-width: 1px;
  --mat-card-elevated-container-color: white;
  --mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-container-color: white;
  --mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-outline-color: rgba(51, 51, 51, 0.93);
  --mat-card-subtitle-text-color: #999;
  --mat-card-filled-container-color: white;
  --mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.joyz-bright-theme .mat-mdc-card {
  display: block;
  box-sizing: content-box;
  padding: 16px;
  color: rgba(51, 51, 51, 0.87);
  --mat-card-subtitle-text-color: #999;
  box-shadow: 0px 2px 4px -1px rgba(51, 51, 51, 0.2), 0px 4px 5px 0px rgba(51, 51, 51, 0.14), 0px 1px 10px 0px rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-mdc-card > :first-child,
.joyz-bright-theme .mat-mdc-card-content > :first-child {
  margin-top: 0;
}
.joyz-bright-theme .mat-mdc-card .mat-mdc-card-header,
.joyz-bright-theme .mat-mdc-card .mat-mdc-card-content {
  padding: 0;
}
.joyz-bright-theme .mat-mdc-card-title {
  line-height: normal;
  margin: 0 0 12px;
}
.joyz-bright-theme .mat-mdc-card-header-text {
  margin: 0 16px;
}
.joyz-bright-theme {
  --mat-checkbox-disabled-selected-checkmark-color: white;
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-touch-target-size: 48px;
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #635b72;
  --mat-checkbox-selected-hover-icon-color: #635b72;
  --mat-checkbox-selected-icon-color: #635b72;
  --mat-checkbox-selected-pressed-icon-color: #635b72;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #635b72;
  --mat-checkbox-selected-hover-state-layer-color: #635b72;
  --mat-checkbox-selected-pressed-state-layer-color: #635b72;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-checkbox.mat-primary {
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #6750a4;
  --mat-checkbox-selected-hover-icon-color: #6750a4;
  --mat-checkbox-selected-icon-color: #6750a4;
  --mat-checkbox-selected-pressed-icon-color: #6750a4;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #6750a4;
  --mat-checkbox-selected-hover-state-layer-color: #6750a4;
  --mat-checkbox-selected-pressed-state-layer-color: #6750a4;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-checkbox.mat-warn {
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #ba1a1a;
  --mat-checkbox-selected-hover-icon-color: #ba1a1a;
  --mat-checkbox-selected-icon-color: #ba1a1a;
  --mat-checkbox-selected-pressed-icon-color: #ba1a1a;
  --mat-checkbox-unselected-focus-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-icon-color: #999;
  --mat-checkbox-selected-focus-state-layer-color: #ba1a1a;
  --mat-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mat-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme {
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 40px;
}
.joyz-bright-theme .mat-mdc-checkbox .mdc-form-field {
  align-items: baseline;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.joyz-bright-theme .mat-mdc-checkbox .mdc-form-field > label {
  padding-left: 0;
}
.joyz-bright-theme .mat-mdc-checkbox .mdc-checkbox {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  padding: 0;
  margin: auto 8px auto auto;
}
.joyz-bright-theme .mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__background {
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
}
.joyz-bright-theme .mat-mdc-checkbox .mat-mdc-checkbox-ripple {
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
}
.joyz-bright-theme .mat-mdc-checkbox {
  --mat-checkbox-selected-focus-state-layer-opacity: 0;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0;
}
.joyz-bright-theme .mat-mdc-checkbox,
.joyz-bright-theme .mat-mdc-checkbox.mat-primary,
.joyz-bright-theme .mat-mdc-checkbox.mat-accent,
.joyz-bright-theme .mat-mdc-checkbox.mat-warn {
  --mat-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-checkbox-disabled-selected-checkmark-color: whitesmoke;
  --mat-checkbox-disabled-label-color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-mdc-checkbox.cdk-keyboard-focused {
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
}
.joyz-bright-theme .mat-mdc-checkbox-checked {
  --mat-checkbox-selected-icon-color: #333333;
  --mat-checkbox-selected-hover-icon-color: #333333;
  --mat-checkbox-selected-focus-icon-color: #333333;
  --mat-checkbox-selected-pressed-icon-color: #333333;
}
.joyz-bright-theme .mat-mdc-checkbox.mat-primary.mat-mdc-checkbox-checked {
  --mat-checkbox-selected-icon-color: #6750a4;
  --mat-checkbox-selected-hover-icon-color: #6750a4;
  --mat-checkbox-selected-focus-icon-color: #6750a4;
  --mat-checkbox-selected-pressed-icon-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-checkbox.mat-accent.mat-mdc-checkbox-checked {
  --mat-checkbox-selected-icon-color: #635b72;
  --mat-checkbox-selected-hover-icon-color: #635b72;
  --mat-checkbox-selected-focus-icon-color: #635b72;
  --mat-checkbox-selected-pressed-icon-color: #635b72;
}
.joyz-bright-theme .mat-mdc-checkbox.mat-warn.mat-mdc-checkbox-checked {
  --mat-checkbox-selected-icon-color: #ba1a1a;
  --mat-checkbox-selected-hover-icon-color: #ba1a1a;
  --mat-checkbox-selected-focus-icon-color: #ba1a1a;
  --mat-checkbox-selected-pressed-icon-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox {
  margin: 2px 8px auto 0;
}
.joyz-bright-theme .mat-mdc-checkbox.centered .mdc-checkbox {
  margin: auto 8px auto auto;
}
.joyz-bright-theme .mat-datepicker-content,
.joyz-bright-theme .mat-calendar {
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-date-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(51, 51, 51, 0.38);
  --mat-datepicker-calendar-body-label-text-color: #999;
  --mat-datepicker-calendar-header-text-color: #999;
  --mat-datepicker-calendar-header-divider-color: rgba(51, 51, 51, 0.93);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(51, 51, 51, 0.54);
  --mat-datepicker-calendar-period-button-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: rgba(51, 51, 51, 0.54);
  --mat-datepicker-calendar-date-selected-state-background-color: #6750a4;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(103, 80, 164, 0.4);
  --mat-datepicker-calendar-date-today-outline-color: rgba(51, 51, 51, 0.38);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(103, 80, 164, 0.2);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 0, 0, 0.04);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 0, 0, 0.04);
  --mat-datepicker-toggle-icon-color: rgba(51, 51, 51, 0.54);
  --mat-datepicker-toggle-active-state-icon-color: #6750a4;
  --mat-datepicker-range-input-separator-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(51, 51, 51, 0.38);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-calendar-arrow {
  display: none;
}
.joyz-bright-theme {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #6750a4 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #635b72 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #6750a4;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #6750a4 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #6750a4 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #6750a4 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #6750a4;
  --mat-datepicker-toggle-icon-color: #999;
  --mat-datepicker-calendar-body-label-text-color: #999;
  --mat-datepicker-calendar-period-button-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: #999;
  --mat-datepicker-calendar-navigation-button-icon-color: #999;
  --mat-datepicker-calendar-header-divider-color: rgba(51, 51, 51, 0.93);
  --mat-datepicker-calendar-header-text-color: #999;
  --mat-datepicker-calendar-date-today-outline-color: #999;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: #999;
  --mat-datepicker-range-input-separator-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-datepicker-content.mat-accent, .joyz-bright-theme .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #635b72 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #635b72 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #635b72;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #635b72 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #635b72 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #635b72 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #635b72;
  --mat-datepicker-toggle-icon-color: #999;
  --mat-datepicker-calendar-body-label-text-color: #999;
  --mat-datepicker-calendar-period-button-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: #999;
  --mat-datepicker-calendar-navigation-button-icon-color: #999;
  --mat-datepicker-calendar-header-divider-color: rgba(51, 51, 51, 0.93);
  --mat-datepicker-calendar-header-text-color: #999;
  --mat-datepicker-calendar-date-today-outline-color: #999;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: #999;
  --mat-datepicker-range-input-separator-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-datepicker-content.mat-warn, .joyz-bright-theme .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #ba1a1a 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #635b72 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #ba1a1a;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #ba1a1a 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #ba1a1a 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #ba1a1a 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #ba1a1a;
  --mat-datepicker-toggle-icon-color: #999;
  --mat-datepicker-calendar-body-label-text-color: #999;
  --mat-datepicker-calendar-period-button-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: #999;
  --mat-datepicker-calendar-navigation-button-icon-color: #999;
  --mat-datepicker-calendar-header-divider-color: rgba(51, 51, 51, 0.93);
  --mat-datepicker-calendar-header-text-color: #999;
  --mat-datepicker-calendar-date-today-outline-color: #999;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: #999;
  --mat-datepicker-range-input-separator-color: rgba(51, 51, 51, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.joyz-bright-theme .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  --mat-icon-button-state-layer-size: 40px;
  width: var(--mat-icon-button-state-layer-size);
  height: var(--mat-icon-button-state-layer-size);
  padding: 8px;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-form-field-icon-prefix .mat-datepicker-toggle .mat-mdc-button-base,
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-form-field-icon-suffix .mat-datepicker-toggle .mat-mdc-button-base {
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  font-size: inherit;
  vertical-align: 3px;
}
.joyz-bright-theme .mat-datepicker-toggle-default-icon {
  width: 1.5em;
  height: 1.5em;
}
.joyz-bright-theme .mat-datepicker-toggle,
.joyz-bright-theme .mat-datepicker-content .mat-calendar-next-button,
.joyz-bright-theme .mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(51, 51, 51, 0.54);
}
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-previous-button,
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-next-button {
  position: relative;
}
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-previous-button::after,
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-next-button::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
  margin: 15.5px;
  border: 0 solid currentColor;
  border-top-width: 2px;
}
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-previous-button {
  transform: rotate(180deg);
}
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-previous-button::after {
  border-right-width: 2px;
  transform: translateX(-2px) rotate(45deg);
}
.joyz-bright-theme ui-joyz-calendar-header .mat-calendar-next-button::after {
  border-right-width: 2px;
  transform: translateX(-2px) rotate(45deg);
}
.joyz-bright-theme .mat-calendar-table-header {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-calendar-table-header .mat-calendar-table-header-divider {
  display: none;
}
.joyz-bright-theme .mat-calendar-body-label {
  visibility: hidden;
}
.joyz-bright-theme .mat-calendar-body tr:not([role=row]) {
  display: none;
}
.joyz-bright-theme .mat-calendar-body-cell-content {
  color: rgba(51, 51, 51, 0.87);
  border-color: transparent;
}
.joyz-bright-theme .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),
.joyz-bright-theme .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),
.joyz-bright-theme .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  background-color: rgba(0, 0, 0, 0.04);
}
.joyz-bright-theme .mat-calendar-body-cell.mat-calendar-body-in-preview .mat-calendar-body-cell-preview {
  background-color: rgba(128, 128, 128, 0.1);
}
.joyz-bright-theme .mat-calendar-body-cell-content::before {
  margin: 0;
}
.joyz-bright-theme .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  color: black;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: center;
}
.joyz-bright-theme .mat-calendar-body-selected {
  color: #ffffff;
}
.joyz-bright-theme .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: rgba(51, 51, 51, 0.18);
}
.joyz-bright-theme .mat-datepicker-content {
  background-color: white;
  color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: unset;
  font-weight: bold;
  font-size: 16px;
}
.joyz-bright-theme .mat-datepicker-toggle-active {
  color: #6750a4;
}
.joyz-bright-theme .mat-datepicker-toggle-active.mat-accent {
  color: #635b72;
}
.joyz-bright-theme .mat-datepicker-toggle-active.mat-warn {
  color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mat-dialog-container-color: white;
  --mat-dialog-subhead-color: rgba(51, 51, 51, 0.87);
  --mat-dialog-supporting-text-color: #999;
}
.joyz-bright-theme .mat-mdc-dialog-container {
  transform: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  max-width: none;
  border-radius: 4px;
}
.joyz-bright-theme .mat-mdc-dialog-container .mat-mdc-dialog-surface {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  position: static;
}
.joyz-bright-theme .mat-mdc-dialog-container .mat-mdc-dialog-surface::before {
  display: none;
}
.joyz-bright-theme .mat-mdc-dialog-container .mat-calendar-content {
  padding: 0;
}
@media (forced-colors: active) {
  .joyz-bright-theme .mat-mdc-dialog-container {
    outline: solid 1px;
  }
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.95;
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing.backdrop-light {
  opacity: 0.5;
  background-color: #ffffff;
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing.backdrop-dark {
  opacity: 0.6;
  background-color: #333333;
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing.backdrop-ultra-light {
  opacity: 0.2;
  background-color: #ffffff;
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing.backdrop-transparent {
  opacity: 0;
}
.joyz-bright-theme .cdk-overlay-container .cdk-overlay-dark-backdrop {
  background-color: #ffffff;
}
.joyz-bright-theme {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #6750a4 87%, transparent);
  --mat-form-field-filled-caret-color: #6750a4;
  --mat-form-field-filled-focus-active-indicator-color: #6750a4;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #6750a4 87%, transparent);
  --mat-form-field-outlined-caret-color: #6750a4;
  --mat-form-field-outlined-focus-outline-color: #6750a4;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #6750a4 87%, transparent);
  --mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-error-text-color: #ba1a1a;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: #999;
  --mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.12;
  --mat-form-field-filled-container-color: #f6f6f6;
  --mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 4%, transparent);
  --mat-form-field-filled-label-text-color: #999;
  --mat-form-field-filled-hover-label-text-color: #999;
  --mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-filled-input-text-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-filled-input-text-placeholder-color: #999;
  --mat-form-field-filled-error-hover-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-caret-color: #ba1a1a;
  --mat-form-field-filled-active-indicator-color: #999;
  --mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-form-field-filled-hover-active-indicator-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-filled-error-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-hover-active-indicator-color: #ba1a1a;
  --mat-form-field-outlined-label-text-color: #999;
  --mat-form-field-outlined-hover-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-outlined-input-text-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-form-field-outlined-input-text-placeholder-color: #999;
  --mat-form-field-outlined-error-caret-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-hover-label-text-color: #ba1a1a;
  --mat-form-field-outlined-outline-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 12%, transparent);
  --mat-form-field-outlined-hover-outline-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-outlined-error-focus-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-hover-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-outline-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field.mat-accent {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #635b72 87%, transparent);
  --mat-form-field-filled-caret-color: #635b72;
  --mat-form-field-filled-focus-active-indicator-color: #635b72;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #635b72 87%, transparent);
  --mat-form-field-outlined-caret-color: #635b72;
  --mat-form-field-outlined-focus-outline-color: #635b72;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #635b72 87%, transparent);
}
.joyz-bright-theme .mat-mdc-form-field.mat-warn {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #ba1a1a 87%, transparent);
  --mat-form-field-filled-caret-color: #ba1a1a;
  --mat-form-field-filled-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #ba1a1a 87%, transparent);
  --mat-form-field-outlined-caret-color: #ba1a1a;
  --mat-form-field-outlined-focus-outline-color: #ba1a1a;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #ba1a1a 87%, transparent);
}
.joyz-bright-theme .mat-mdc-form-field {
  --mat-form-field-filled-container-color: transparent;
  --mat-form-field-filled-disabled-container-color: transparent;
  --mat-form-field-filled-container-shape: 0;
  --mat-form-field-filled-label-text-color: #999;
  --mat-form-field-filled-hover-label-text-color: #999;
  --mat-form-field-filled-focus-label-text-color: #6750a4;
  --mat-form-field-filled-input-text-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-filled-caret-color: #6750a4;
  --mat-form-field-filled-active-indicator-color: rgba(51, 51, 51, 0.42);
  --mat-form-field-filled-hover-active-indicator-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-filled-focus-active-indicator-color: #6750a4;
  --mat-form-field-filled-error-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-hover-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-hover-label-text-color: #ba1a1a;
  --mat-form-field-outlined-label-text-color: #999;
  --mat-form-field-outlined-hover-label-text-color: #999;
  --mat-form-field-outlined-focus-label-text-color: #6750a4;
  --mat-form-field-outlined-input-text-color: rgba(51, 51, 51, 0.87);
  --mat-form-field-outlined-caret-color: #6750a4;
  --mat-form-field-outlined-outline-color: rgba(51, 51, 51, 0.12);
  --mat-form-field-outlined-outline-width: 1px;
  --mat-form-field-outlined-focus-outline-width: 2px;
  --mat-form-field-outlined-focus-outline-color: #6750a4;
  --mat-form-field-outlined-error-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-hover-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-disabled-label-text-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-filled-disabled-input-text-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-filled-disabled-active-indicator-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-outlined-disabled-label-text-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-outlined-disabled-input-text-color: rgba(51, 51, 51, 0.38);
  --mat-form-field-outlined-disabled-outline-color: rgba(51, 51, 51, 0.06);
  --mat-form-field-filled-input-text-placeholder-color: rgba(51, 51, 51, 0.54);
  --mat-form-field-outlined-input-text-placeholder-color: rgba(51, 51, 51, 0.54);
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}
.joyz-bright-theme .mat-form-field-appearance-fill .mat-mdc-form-field-infix {
  min-height: 0;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-form-field-flex {
  padding: 0 0.75em;
  margin-top: -0.25em;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-form-field-infix {
  min-height: 0;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  top: 0;
  transform: translateY(-37.5%) scale(0.75);
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-appearance-fill .mat-mdc-form-field-focus-overlay {
  opacity: 0;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-appearance-fill .mdc-floating-label--float-above {
  max-width: 133.3333333333%;
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  margin: 0.25em 0;
}
.joyz-bright-theme .error-label.mat-mdc-form-field-subscript-wrapper {
  position: absolute;
  top: calc(100% - 2.0666666667em);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  margin-top: 0.6666666667em;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
}
.joyz-bright-theme .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before {
  border-bottom-color: transparent;
  height: 1px;
  background-image: linear-gradient(to right, rgba(51, 51, 51, 0.38) 0%, rgba(51, 51, 51, 0.38) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused .mat-mdc-form-field-required-marker {
  color: #635b72;
}
.joyz-bright-theme .mat-mdc-form-field-hint {
  color: #999;
}
.joyz-bright-theme .mat-mdc-form-field-error {
  color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused.mat-accent {
  --mat-form-field-filled-focus-label-text-color: #635b72;
  --mat-form-field-filled-focus-active-indicator-color: #635b72;
  --mat-form-field-outlined-focus-label-text-color: #635b72;
  --mat-form-field-outlined-focus-outline-color: #635b72;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused.mat-warn {
  --mat-form-field-filled-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-outlined-focus-label-text-color: #ba1a1a;
  --mat-form-field-outlined-focus-outline-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
  color: #999;
}
.joyz-bright-theme .mat-mdc-input-element:disabled,
.joyz-bright-theme .mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-form-field-appearance-outline .mat-mdc-form-field-infix {
  padding: 0.25em 0 0.5em 0;
}
.joyz-bright-theme .mat-mdc-input-element:not(.mat-mdc-form-field-input-control) {
  font: inherit;
  background: rgba(0, 0, 0, 0);
  color: currentColor;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  box-sizing: content-box;
}
.joyz-bright-theme :where(.mat-mdc-input-element:not(.mat-mdc-form-field-input-control)) {
  text-align: inherit;
}
.joyz-bright-theme .mat-mdc-input-element {
  caret-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-input-element::placeholder {
  color: rgba(51, 51, 51, 0.54);
}
.joyz-bright-theme .mat-accent .mat-mdc-input-element {
  caret-color: #635b72;
}
.joyz-bright-theme .mat-warn .mat-mdc-input-element,
.joyz-bright-theme .mat-form-field-invalid .mat-mdc-input-element {
  caret-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field-type-mat-native-select.mat-form-field-invalid .mat-mdc-form-field-infix::after {
  color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-list-base {
  padding-bottom: 0;
}
.joyz-bright-theme .mat-mdc-list-base .mdc-list-item__content {
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.joyz-bright-theme .mat-mdc-list-item {
  box-sizing: content-box;
  --mat-list-list-item-container-shape: 0;
  --mat-list-active-indicator-shape: 0;
  overflow: visible;
}
.joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-one-line {
  height: auto;
  min-height: var(--mat-list-list-item-one-line-container-height, 48px);
}
.joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-two-lines {
  height: auto;
  min-height: var(--mat-list-list-item-two-line-container-height, 64px);
}
.joyz-bright-theme .mat-mdc-list-item.mdc-list-item--with-three-lines {
  height: auto;
  min-height: var(--mat-list-list-item-three-line-container-height, 88px);
}
.joyz-bright-theme .mat-mdc-list-item {
  padding-left: 0;
  padding-right: 0;
}
.joyz-bright-theme .mat-mdc-list-item .mdc-list-item__content {
  align-self: stretch;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  min-width: 0;
}
.joyz-bright-theme .mat-mdc-list-item .mat-mdc-list-item-unscoped-content {
  display: contents;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.joyz-bright-theme .mat-mdc-menu-panel.mat-mdc-menu-panel {
  box-shadow: 0 0 25px 0 rgba(51, 51, 51, 0.2);
}
.joyz-bright-theme .mat-mdc-menu-panel {
  background: white;
  border-radius: 8px;
  position: relative;
  min-height: 64px;
}
.joyz-bright-theme .mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 0;
}
.joyz-bright-theme .mat-mdc-menu-item {
  background: transparent;
  color: #333333;
  display: block;
  line-height: 48px;
  min-height: 0;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-item-spacing: 16px;
  height: 60px;
  width: 240px;
  border-top: 1px solid #e5e5e5;
}
.joyz-bright-theme .mat-mdc-menu-item:first-of-type {
  border: 0;
}
.joyz-bright-theme .mat-mdc-menu-item[disabled], .joyz-bright-theme .mat-mdc-menu-item[disabled]::after {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-mdc-menu-item .mat-mdc-menu-item-text {
  display: contents;
}
.joyz-bright-theme .mat-mdc-menu-item .mat-icon {
  vertical-align: middle;
}
.joyz-bright-theme .mat-mdc-menu-item .mat-icon-no-color {
  color: #333333;
  width: 36px;
  height: 36px;
}
.joyz-bright-theme .mat-icon-no-color.small-icon {
  width: 28px;
  height: 28px;
  padding: 4px;
}
.joyz-bright-theme .mat-mdc-menu-item:hover:not([disabled]),
.joyz-bright-theme .mat-mdc-menu-item.cdk-program-focused:not([disabled]),
.joyz-bright-theme .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),
.joyz-bright-theme .mat-mdc-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.joyz-bright-theme .mat-mdc-progress-spinner {
  --mat-progress-spinner-active-indicator-color: #6750a4;
}
.joyz-bright-theme .mat-mdc-progress-spinner.mat-accent {
  --mat-progress-spinner-active-indicator-color: #635b72;
}
.joyz-bright-theme .mat-mdc-progress-spinner.mat-warn {
  --mat-progress-spinner-active-indicator-color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(51, 51, 51, 0.87);
  --mat-table-row-item-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-table-row-item-outline-color: rgba(51, 51, 51, 0.93);
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}
.joyz-bright-theme .mat-mdc-table,
.joyz-bright-theme .mat-mdc-header-row,
.joyz-bright-theme .mat-mdc-row {
  background: white;
}
.joyz-bright-theme .mat-mdc-table {
  color: rgba(51, 51, 51, 0.87);
  min-width: 0;
  white-space: normal;
}
.joyz-bright-theme .mat-mdc-header-row,
.joyz-bright-theme .mat-mdc-row {
  font-size: inherit;
  font-weight: inherit;
  line-height: normal;
}
.joyz-bright-theme .mat-mdc-header-row,
.joyz-bright-theme .mat-mdc-row {
  border-bottom: 1px solid rgba(51, 51, 51, 0.93);
}
.joyz-bright-theme .mat-mdc-header-cell,
.joyz-bright-theme .mat-mdc-cell {
  border-bottom: 0;
  background: transparent;
  box-sizing: content-box;
  padding-left: 0;
}
.joyz-bright-theme .mat-mdc-header-cell:first-of-type,
.joyz-bright-theme .mat-mdc-cell:first-of-type,
.joyz-bright-theme .mat-mdc-footer-cell:first-of-type {
  padding-left: 24px;
}
.joyz-bright-theme .mat-mdc-header-cell {
  color: #999;
  font-size: inherit;
  font-weight: inherit;
  line-height: normal;
}
.joyz-bright-theme {
  --mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(51, 51, 51, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: #999;
  --mat-select-enabled-arrow-color: #999;
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #6750a4;
  --mat-select-invalid-arrow-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(51, 51, 51, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: #999;
  --mat-select-enabled-arrow-color: #999;
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #635b72;
  --mat-select-invalid-arrow-color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(51, 51, 51, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: #999;
  --mat-select-enabled-arrow-color: #999;
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #ba1a1a;
  --mat-select-invalid-arrow-color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-select-arrow-transform: translateY(-8px);
}
.joyz-bright-theme .mat-mdc-select-value {
  color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-mdc-select-disabled .mat-mdc-select-value {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-mdc-select-arrow {
  color: #999;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-select-arrow-wrapper {
  height: 16px;
  transform: none;
}
.joyz-bright-theme .mat-mdc-select-arrow {
  margin: 0 4px;
}
.joyz-bright-theme .mat-mdc-select-panel {
  background: white;
  box-shadow: 0 0 25px 0 rgba(51, 51, 51, 0.2);
  width: 100%;
}
.joyz-bright-theme .mat-mdc-select-panel .mat-mdc-option {
  height: 80px;
  border-top: 1px solid #e5e5e5;
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.12);
}
.joyz-bright-theme .mat-mdc-select-panel .mat-mdc-option:first-of-type {
  border: 0;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused.mat-primary .mat-mdc-select-arrow {
  color: #6750a4;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused.mat-accent .mat-mdc-select-arrow {
  color: #635b72;
}
.joyz-bright-theme .mat-mdc-form-field.mat-focused.mat-warn .mat-mdc-select-arrow {
  color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow {
  color: #ba1a1a;
}
.joyz-bright-theme .mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-mdc-autocomplete-panel {
  --mat-autocomplete-background-color: white;
  box-shadow: 0px 2px 4px -1px rgba(51, 51, 51, 0.2), 0px 4px 5px 0px rgba(51, 51, 51, 0.14), 0px 1px 10px 0px rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-mdc-option {
  --mat-option-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.joyz-bright-theme .mat-mdc-option.mdc-list-item--disabled {
  color: rgba(51, 51, 51, 0.38);
}
.joyz-bright-theme .mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text {
  opacity: 1;
}
.joyz-bright-theme .mat-mdc-option .mat-pseudo-checkbox-minimal {
  display: none;
}
.joyz-bright-theme .mat-mdc-option .mdc-list-item__primary-text {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.joyz-bright-theme .mat-mdc-option .color-circle {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 12px;
  background-color: red;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.CANCELED {
  background-color: #d50000;
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.CANCELED .mat-mdc-select-value {
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.NEW {
  background-color: #009688;
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.NEW .mat-mdc-select-value {
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.INPREPARATION {
  background-color: #ffc107;
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.INPREPARATION ::ng-deep .mat-mdc-select-value {
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.INPREPARATION ::ng-deep .mat-mdc-select-arrow {
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.SENT {
  background-color: #1e88e5;
  color: #ffffff;
}
.joyz-bright-theme .mat-mdc-option .order-status-background.SENT .mat-mdc-select-value {
  color: #ffffff;
}
.joyz-bright-theme .mat-primary {
  --mat-option-selected-state-label-text-color: #6750a4;
}
.joyz-bright-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #635b72;
}
.joyz-bright-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-paginator-page-size-select-width: 84px;
  --mat-paginator-page-size-select-touch-target-height: 48px;
  --mat-paginator-container-text-color: rgba(51, 51, 51, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: #999;
  --mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
}
.joyz-bright-theme .mat-mdc-paginator {
  --mat-paginator-container-text-color: #999;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-container-text-line-height: normal;
  --mat-paginator-enabled-icon-color: #999;
  --mat-paginator-disabled-icon-color: rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-mdc-paginator .mat-mdc-icon-button {
  --mat-icon-button-icon-size: 28px;
}
.joyz-bright-theme .mat-mdc-paginator .mat-mdc-paginator-page-size-select {
  width: 56px;
  flex: 0 0 auto;
  margin-top: 6px;
}
.joyz-bright-theme .mat-mdc-paginator .mat-mdc-paginator-page-size-select.mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix {
  padding: 0.3em 0;
  min-height: 0;
}
.joyz-bright-theme .mat-mdc-paginator .mat-mdc-paginator-page-size-select .mat-mdc-select {
  line-height: inherit;
}
.joyz-bright-theme .mat-mdc-paginator .mat-mdc-paginator-page-size-select .mat-mdc-form-field-subscript-wrapper {
  display: block;
}
.joyz-bright-theme {
  --mat-sidenav-container-divider-color: transparent;
}
.joyz-bright-theme .mat-drawer-container {
  background-color: #f5f5f5;
  color: rgba(51, 51, 51, 0.87);
}
.joyz-bright-theme .mat-drawer {
  background-color: #f5f5f5;
  color: rgba(51, 51, 51, 0.87);
  --mat-sidenav-container-width: auto;
}
.joyz-bright-theme .mat-drawer.mat-drawer-push {
  background-color: white;
}
.joyz-bright-theme .mat-drawer {
  box-shadow: 0 0 8px 0 rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme .mat-drawer-side,
.joyz-bright-theme .mat-drawer-side.mat-drawer-end {
  border-right-width: 0;
  border-left-width: 0;
}
.joyz-bright-theme .mat-drawer-backdrop.mat-drawer-shown {
  opacity: 0.6;
}
.joyz-bright-theme {
  --mat-slide-toggle-disabled-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-selected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-selected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-track-opacity: 0.12;
  --mat-slide-toggle-disabled-unselected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-track-outline-color: transparent;
  --mat-slide-toggle-disabled-unselected-track-outline-width: 1px;
  --mat-slide-toggle-handle-height: 20px;
  --mat-slide-toggle-handle-shape: 10px;
  --mat-slide-toggle-handle-width: 20px;
  --mat-slide-toggle-hidden-track-opacity: 1;
  --mat-slide-toggle-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-slide-toggle-pressed-handle-size: 20px;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-handle-horizontal-margin: 0;
  --mat-slide-toggle-selected-handle-size: 20px;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.04;
  --mat-slide-toggle-selected-icon-size: 18px;
  --mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-track-outline-color: transparent;
  --mat-slide-toggle-selected-track-outline-width: 1px;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0;
  --mat-slide-toggle-track-height: 14px;
  --mat-slide-toggle-track-outline-color: transparent;
  --mat-slide-toggle-track-outline-width: 1px;
  --mat-slide-toggle-track-shape: 7px;
  --mat-slide-toggle-track-width: 36px;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-handle-horizontal-margin: 0;
  --mat-slide-toggle-unselected-handle-size: 20px;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-icon-size: 18px;
  --mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.1;
  --mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-slide-toggle-visible-track-opacity: 1;
  --mat-slide-toggle-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-slide-toggle-with-icon-handle-size: 20px;
  --mat-slide-toggle-touch-target-size: 48px;
  --mat-slide-toggle-selected-icon-color: #ffffff;
  --mat-slide-toggle-disabled-selected-icon-color: #ffffff;
  --mat-slide-toggle-selected-focus-state-layer-color: #6750a4;
  --mat-slide-toggle-selected-handle-color: #6750a4;
  --mat-slide-toggle-selected-hover-state-layer-color: #6750a4;
  --mat-slide-toggle-selected-pressed-state-layer-color: #6750a4;
  --mat-slide-toggle-selected-focus-handle-color: #6750a4;
  --mat-slide-toggle-selected-hover-handle-color: #6750a4;
  --mat-slide-toggle-selected-pressed-handle-color: #6750a4;
  --mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(51, 51, 51, 0.87) 38%, transparent);
  --mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-disabled-selected-handle-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-disabled-selected-track-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-disabled-unselected-handle-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;
  --mat-slide-toggle-disabled-unselected-track-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-handle-surface-color: white;
  --mat-slide-toggle-label-text-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-unselected-hover-handle-color: #424242;
  --mat-slide-toggle-unselected-focus-handle-color: #424242;
  --mat-slide-toggle-unselected-focus-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-unselected-focus-track-color: rgba(51, 51, 51, 0.93);
  --mat-slide-toggle-unselected-icon-color: #f6f6f6;
  --mat-slide-toggle-unselected-handle-color: #999;
  --mat-slide-toggle-unselected-hover-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-unselected-hover-track-color: rgba(51, 51, 51, 0.93);
  --mat-slide-toggle-unselected-pressed-handle-color: #424242;
  --mat-slide-toggle-unselected-pressed-track-color: rgba(51, 51, 51, 0.93);
  --mat-slide-toggle-unselected-pressed-state-layer-color: rgba(51, 51, 51, 0.87);
  --mat-slide-toggle-unselected-track-color: rgba(51, 51, 51, 0.93);
}
.joyz-bright-theme .mat-mdc-slide-toggle.mat-accent {
  --mat-slide-toggle-selected-icon-color: #ffffff;
  --mat-slide-toggle-disabled-selected-icon-color: #ffffff;
  --mat-slide-toggle-selected-focus-state-layer-color: #635b72;
  --mat-slide-toggle-selected-handle-color: #635b72;
  --mat-slide-toggle-selected-hover-state-layer-color: #635b72;
  --mat-slide-toggle-selected-pressed-state-layer-color: #635b72;
  --mat-slide-toggle-selected-focus-handle-color: #635b72;
  --mat-slide-toggle-selected-hover-handle-color: #635b72;
  --mat-slide-toggle-selected-pressed-handle-color: #635b72;
}
.joyz-bright-theme .mat-mdc-slide-toggle.mat-warn {
  --mat-slide-toggle-selected-icon-color: #ffffff;
  --mat-slide-toggle-disabled-selected-icon-color: #ffffff;
  --mat-slide-toggle-selected-focus-state-layer-color: #ba1a1a;
  --mat-slide-toggle-selected-handle-color: #ba1a1a;
  --mat-slide-toggle-selected-hover-state-layer-color: #ba1a1a;
  --mat-slide-toggle-selected-pressed-state-layer-color: #ba1a1a;
  --mat-slide-toggle-selected-focus-handle-color: #ba1a1a;
  --mat-slide-toggle-selected-hover-handle-color: #ba1a1a;
  --mat-slide-toggle-selected-pressed-handle-color: #ba1a1a;
}
.joyz-bright-theme {
  --mat-slide-toggle-state-layer-size: 40px;
  --mat-slide-toggle-touch-target-display: block;
}
.joyz-bright-theme .mat-mdc-slide-toggle {
  height: auto;
  line-height: 24px;
  white-space: nowrap;
  max-width: 100%;
}
.joyz-bright-theme .mat-mdc-slide-toggle .mdc-form-field {
  display: flex;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.joyz-bright-theme .mat-mdc-slide-toggle .mdc-form-field > label {
  padding-left: 0;
}
.joyz-bright-theme .mat-mdc-slide-toggle .mdc-switch {
  --mat-slide-toggle-track-width: 36px;
  --mat-slide-toggle-track-height: 20px;
  --mat-slide-toggle-track-shape: 20px;
  --mat-slide-toggle-handle-width: 16px;
  --mat-slide-toggle-handle-height: 16px;
  --mat-slide-toggle-handle-shape: 16px;
  --mat-slide-toggle-unselected-handle-size: 16px;
  --mat-slide-toggle-selected-handle-size: 16px;
  --mat-slide-toggle-pressed-handle-size: 16px;
  --mat-slide-toggle-handle-surface-color: #ffffff;
  --mat-slide-toggle-selected-handle-color: #ffffff;
  --mat-slide-toggle-selected-hover-handle-color: #ffffff;
  --mat-slide-toggle-selected-focus-handle-color: #ffffff;
  --mat-slide-toggle-selected-pressed-handle-color: #ffffff;
  --mat-slide-toggle-unselected-handle-color: #ffffff;
  --mat-slide-toggle-unselected-hover-handle-color: #ffffff;
  --mat-slide-toggle-unselected-focus-handle-color: #ffffff;
  --mat-slide-toggle-unselected-pressed-handle-color: #ffffff;
  --mat-slide-toggle-handle-elevation-shadow: 0 2px 3px 0 #00000026;
  --mat-slide-toggle-unselected-track-color: #e0e0e0;
  --mat-slide-toggle-unselected-hover-track-color: #e0e0e0;
  --mat-slide-toggle-unselected-focus-track-color: #e0e0e0;
  --mat-slide-toggle-unselected-pressed-track-color: #e0e0e0;
  --mat-slide-toggle-selected-track-color: #6750a4;
  --mat-slide-toggle-selected-hover-track-color: #6750a4;
  --mat-slide-toggle-selected-focus-track-color: #6750a4;
  --mat-slide-toggle-selected-pressed-track-color: #6750a4;
  --mat-slide-toggle-selected-hover-state-layer-color: #6750a4;
  --mat-slide-toggle-selected-focus-state-layer-color: #6750a4;
  --mat-slide-toggle-selected-pressed-state-layer-color: #6750a4;
  --mat-slide-toggle-unselected-hover-state-layer-color: #e0e0e0;
  --mat-slide-toggle-unselected-focus-state-layer-color: #e0e0e0;
  --mat-slide-toggle-unselected-pressed-state-layer-color: #e0e0e0;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.12;
}
@media (max-width: 1024px) {
  .joyz-bright-theme .mat-mdc-slide-toggle .mdc-switch {
    --mat-slide-toggle-track-width: 26px;
    --mat-slide-toggle-track-height: 10px;
    --mat-slide-toggle-track-shape: 10px;
    --mat-slide-toggle-handle-width: 10px;
    --mat-slide-toggle-handle-height: 10px;
    --mat-slide-toggle-handle-shape: 10px;
  }
}
.joyz-bright-theme .mat-mdc-slide-toggle.cdk-keyboard-focused .mdc-switch {
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
}
.joyz-bright-theme .mat-mdc-slide-toggle .mdc-switch .mdc-switch__handle-track {
  left: 2px;
  width: calc(100% - var(--mat-slide-toggle-handle-width) - 4px);
}
.joyz-bright-theme .jz-slide-column {
  box-sizing: content-box;
}
.joyz-bright-theme .jz-slide-column * {
  box-sizing: inherit;
}
.joyz-bright-theme .jz-slide-column .mdc-form-field {
  flex-direction: column;
  position: relative;
}
.joyz-bright-theme .jz-slide-column .mdc-label {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: -20px;
  left: -50%;
  right: -50%;
}
.joyz-bright-theme .mat-mdc-slide-toggle .mdc-label {
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.joyz-bright-theme .mat-ripple .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.4) !important;
}
.joyz-bright-theme .joyz-inverted .mat-ripple .mat-ripple-element {
  background-color: rgba(0, 150, 136, 0.3) !important;
}
.joyz-bright-theme mat-list-item .mat-ripple .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
.joyz-bright-theme button.mat-primary .mat-ripple .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
.joyz-bright-theme .mat-mdc-radio-button .mdc-form-field {
  width: 100%;
  white-space: nowrap;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.joyz-bright-theme .mat-mdc-radio-button .mdc-label {
  font-size: 16px;
}
@media (max-width: 1440px) {
  .joyz-bright-theme .mat-mdc-radio-button .mdc-label {
    font-size: 14px;
  }
}
.joyz-bright-theme .mat-mdc-radio-button .mdc-radio {
  padding: 0;
}
.joyz-bright-theme .mat-mdc-radio-button .mdc-form-field > label {
  padding-left: 8px;
  line-height: inherit;
}
.joyz-bright-theme .mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:focus + .mdc-radio__background::before {
  opacity: 0;
}
.joyz-bright-theme .mat-mdc-radio-button.cdk-keyboard-focused .mdc-radio .mdc-radio__background::before {
  opacity: 0.12;
  transform: scale(1);
}
.joyz-bright-theme .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.95;
}
.joyz-bright-theme .cdk-overlay-dark-backdrop {
  background-color: #ffffff;
}
.joyz-bright-theme ui-joyz-page-header .page-header__headline {
  font: 400 36px / 1.4 Poppins, "Helvetica Neue", sans-serif;
}
@media (max-width: 1440px) {
  .joyz-bright-theme ui-joyz-page-header .page-header__headline {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .joyz-bright-theme ui-joyz-page-header .page-header__headline {
    font-size: 24px;
  }
}
.joyz-bright-theme ui-joyz-page-header .page-header__headline2 {
  font: 400 16px / 1.4 Poppins, "Helvetica Neue", sans-serif;
}
.joyz-bright-theme .cke_dialog_ui_button_ok {
  background: #009688 !important;
  border-radius: 4px !important;
  border-color: #009688 !important;
  color: #333333 !important;
}
.joyz-bright-theme .cke_dialog_ui_button_cancel {
  border-radius: 4px !important;
}
.joyz-bright-theme ui-joyz-auth-header {
  background-color: #6750a4;
}
.joyz-bright-theme ui-joyz-auth-header .logo {
  background-color: #6750a4;
}
.joyz-bright-theme ui-joyz-sidenav-button.ACTIVE {
  background-color: #6750a4;
  color: #ffffff;
}
.joyz-bright-theme ui-joyz-sidenav-button.ACTIVE img {
  filter: brightness(5);
}
.joyz-bright-theme ui-joyz-functional-button.ACTIVE button {
  border-color: #6750a4 !important;
  border-width: 2px;
}
.joyz-bright-theme ui-joyz-functional-button.ACTIVE button * {
  border-color: #ffffff;
}
.joyz-bright-theme ui-joyz-scrollable .scroll-bar, .joyz-bright-theme joyz-chat-scrollable .scroll-bar {
  -webkit-user-select: none;
          user-select: none;
}
.joyz-bright-theme ui-joyz-scrollable .scroll-bar .scroll, .joyz-bright-theme ui-joyz-scrollable .scroll-x .scroll, .joyz-bright-theme joyz-chat-scrollable .scroll-bar .scroll, .joyz-bright-theme joyz-chat-scrollable .scroll-x .scroll {
  background-color: #A594D1;
}
.joyz-bright-theme .form-field-tags__content {
  flex: 1 1 1px;
  display: flex;
  flex-wrap: wrap;
  min-height: 24px;
}
.joyz-bright-theme .form-field-tags .mat-mdc-form-field-infix {
  display: flex;
  align-items: center;
}
.joyz-bright-theme .form-field-tags .form-field-tag {
  margin: 4px;
  display: inline-flex;
  height: 24px;
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  align-items: center;
}
.joyz-bright-theme .form-field-tags .form-field-tag mat-icon {
  width: 16px;
  height: 16px;
}
.joyz-bright-theme .form-field-tags .form-field-tag > * {
  margin: 0 4px;
}
.joyz-bright-theme .form-field-tags .form-field-tag joyz-admin-avatar {
  margin: 0 8px 0 0;
}
.joyz-bright-theme .form-field-tags button {
  margin: -10px -4px -2px 8px;
  flex: 0 0 auto;
  align-items: center;
  height: 36px;
  border-radius: 8px;
}
.joyz-bright-theme .mobile-preview img {
  max-width: 95%;
  height: auto !important;
}
.joyz-bright-theme .mobile-preview ui-joyz-scrollable .container {
  padding-right: 10px;
}
.joyz-bright-theme .big-select-field mat-form-field, .joyz-bright-theme .medium-select-field mat-form-field {
  width: 100%;
}
.joyz-bright-theme .big-select-field mat-form-field .mat-mdc-form-field-infix, .joyz-bright-theme .medium-select-field mat-form-field .mat-mdc-form-field-infix {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.joyz-bright-theme .big-select-field .mat-mdc-select-arrow, .joyz-bright-theme .medium-select-field .mat-mdc-select-arrow {
  visibility: hidden;
}
.joyz-bright-theme .big-select-field .mdc-line-ripple, .joyz-bright-theme .medium-select-field .mdc-line-ripple {
  display: none;
}
.joyz-bright-theme .big-select-field .mat-mdc-select-value .mat-mdc-select-value-text {
  font-size: 24px;
  white-space: pre-wrap;
}
@media (max-width: 1440px) {
  .joyz-bright-theme .big-select-field .mat-mdc-select-value .mat-mdc-select-value-text {
    font-size: 20px;
  }
}
.joyz-bright-theme .big-select-field mat-icon {
  flex: 0 0 24px;
}
.joyz-bright-theme .medium-select-field .mat-mdc-select-value .mat-mdc-select-value-text {
  font-size: 16px;
  white-space: pre-wrap;
}
.joyz-bright-theme hr.dashed {
  border: none;
  border-top: 1px dashed rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme hr.dotted {
  border: none;
  border-top: 1px dotted rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme hr.solid {
  border: none;
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}
.joyz-bright-theme hr.rounded {
  border: none;
  border-top: 8px solid rgba(51, 51, 51, 0.12);
  border-radius: 5px;
}
.joyz-bright-theme ui-joyz-phone-number-control.outline .mat-mdc-form-field-icon-prefix {
  top: 0;
}
.joyz-bright-theme ui-joyz-phone-number-control.outline .phone-form .mdc-floating-label:not(.mdc-floating-label--float-above) {
  top: 1.55em;
}

ui-joyz-auth-header .logo {
  background-color: #fff !important;
}

joyz-admin-crowd .logo {
  background-color: #fff !important;
}

.joyz-bright-theme .mat-mdc-input-element {
  caret-color: rgba(51, 51, 51, 0.5);
}

joyz-admin-mobilenav {
  background-color: #fff !important;
}
