@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap);
.rst__rowWrapper {
    padding: 10px 10px 10px 0;
    height: 100%;
    box-sizing: border-box;
  }
  
  .rst__rtl.rst__rowWrapper {
    padding: 10px 0 10px 10px;
  }
  
  .rst__row {
    height: 100%;
    white-space: nowrap;
    display: flex;
  }
  .rst__row > * {
    box-sizing: border-box;
  }
  
  /**
   * The outline of where the element will go if dropped, displayed while dragging
   */
  .rst__rowLandingPad,
  .rst__rowCancelPad {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
  .rst__rowLandingPad > *,
  .rst__rowCancelPad > * {
    opacity: 0 !important;
  }
  .rst__rowLandingPad::before,
  .rst__rowCancelPad::before {
    background-color: lightblue;
    border: 3px dashed white;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  
  /**
   * Alternate appearance of the landing pad when the dragged location is invalid
   */
  .rst__rowCancelPad::before {
    background-color: #e6a8ad;
  }
  
  /**
   * Nodes matching the search conditions are highlighted
   */
  .rst__rowSearchMatch {
    outline: solid 3px #0080ff;
  }
  
  /**
   * The node that matches the search conditions and is currently focused
   */
  .rst__rowSearchFocus {
    outline: solid 3px #fc6421;
  }
  
  .rst__rowContents,
  .rst__rowLabel,
  .rst__rowToolbar,
  .rst__moveHandle,
  .rst__toolbarButton {
    display: inline-block;
    vertical-align: middle;
  }
  
  .rst__rowContents {
    position: relative;
    height: 100%;
    border: solid #bbbbbbbd  1px;
    border-left: none;
    box-shadow: 0 2px 2px -2px;
    padding: 0 5px 0 10px;
    border-radius: 2px;
    min-width: 230px;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: white; */
  }
  
  .rst__rtl.rst__rowContents {
    border-right: none;
    border-left: solid #bbbbbbbd  1px;
    padding: 0 10px 0 5px;
  }
  
  .rst__rowContentsDragDisabled {
    border-left: solid #bbbbbbbd  1px;
  }
  
  .rst__rtl.rst__rowContentsDragDisabled {
    border-right: solid #bbbbbbbd  1px;
    border-left: solid #bbbbbbbd  1px;
  }
  
  .rst__rowLabel {
    flex: 0 1 auto;
    padding-right: 20px;
  }
  .rst__rtl.rst__rowLabel {
    padding-left: 20px;
    padding-right: inherit;
  }
  
  .rst__rowToolbar {
    flex: 0 1 auto;
    display: flex;
  }
  
  .rst__moveHandle,
  .rst__loadingHandle {
    height: 100%;
    width: 44px;
    background: #73737359
      url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MiIgaGVpZ2h0PSI0MiI+PGcgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIuOSIgPjxwYXRoIGQ9Ik0xNCAxNS43aDE0LjQiLz48cGF0aCBkPSJNMTQgMjEuNGgxNC40Ii8+PHBhdGggZD0iTTE0IDI3LjFoMTQuNCIvPjwvZz4KPC9zdmc+)
      no-repeat center;
    border: solid #aaa 1px;
    box-shadow: 0 2px 2px -2px;
    cursor: move;
    border-radius: 1px;
    z-index: 1;
  }
  
  .rst__loadingHandle {
    cursor: default;
    background: #73737359;
  }
  
  @keyframes pointFade {
    0%,
    19.999%,
    100% {
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
  }
  
  .rst__loadingCircle {
    width: 80%;
    height: 80%;
    margin: 10%;
    position: relative;
  }
  
  .rst__loadingCirclePoint {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .rst__rtl.rst__loadingCirclePoint {
    right: 0;
    left: auto;
    left: initial;
  }
  
  .rst__loadingCirclePoint::before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 11%;
    height: 30%;
    background-color: #fff;
    border-radius: 30%;
    animation: pointFade 800ms infinite ease-in-out both;
  }
  .rst__loadingCirclePoint:nth-of-type(1) {
    transform: rotate(0deg);
  }
  .rst__loadingCirclePoint:nth-of-type(7) {
    transform: rotate(180deg);
  }
  .rst__loadingCirclePoint:nth-of-type(1)::before,
  .rst__loadingCirclePoint:nth-of-type(7)::before {
    animation-delay: -800ms;
  }
  .rst__loadingCirclePoint:nth-of-type(2) {
    transform: rotate(30deg);
  }
  .rst__loadingCirclePoint:nth-of-type(8) {
    transform: rotate(210deg);
  }
  .rst__loadingCirclePoint:nth-of-type(2)::before,
  .rst__loadingCirclePoint:nth-of-type(8)::before {
    animation-delay: -666ms;
  }
  .rst__loadingCirclePoint:nth-of-type(3) {
    transform: rotate(60deg);
  }
  .rst__loadingCirclePoint:nth-of-type(9) {
    transform: rotate(240deg);
  }
  .rst__loadingCirclePoint:nth-of-type(3)::before,
  .rst__loadingCirclePoint:nth-of-type(9)::before {
    animation-delay: -533ms;
  }
  .rst__loadingCirclePoint:nth-of-type(4) {
    transform: rotate(90deg);
  }
  .rst__loadingCirclePoint:nth-of-type(10) {
    transform: rotate(270deg);
  }
  .rst__loadingCirclePoint:nth-of-type(4)::before,
  .rst__loadingCirclePoint:nth-of-type(10)::before {
    animation-delay: -400ms;
  }
  .rst__loadingCirclePoint:nth-of-type(5) {
    transform: rotate(120deg);
  }
  .rst__loadingCirclePoint:nth-of-type(11) {
    transform: rotate(300deg);
  }
  .rst__loadingCirclePoint:nth-of-type(5)::before,
  .rst__loadingCirclePoint:nth-of-type(11)::before {
    animation-delay: -266ms;
  }
  .rst__loadingCirclePoint:nth-of-type(6) {
    transform: rotate(150deg);
  }
  .rst__loadingCirclePoint:nth-of-type(12) {
    transform: rotate(330deg);
  }
  .rst__loadingCirclePoint:nth-of-type(6)::before,
  .rst__loadingCirclePoint:nth-of-type(12)::before {
    animation-delay: -133ms;
  }
  .rst__loadingCirclePoint:nth-of-type(7) {
    transform: rotate(180deg);
  }
  .rst__loadingCirclePoint:nth-of-type(13) {
    transform: rotate(360deg);
  }
  .rst__loadingCirclePoint:nth-of-type(7)::before,
  .rst__loadingCirclePoint:nth-of-type(13)::before {
    animation-delay: 0ms;
  }
  
  .rst__rowTitle {
    font-weight: bold;
  }
  
  .rst__rowTitleWithSubtitle {
    font-size: 85%;
    display: block;
    height: 0.8rem;
  }
  
  .rst__rowSubtitle {
    font-size: 70%;
    line-height: 1;
  }
  
  .rst__collapseButton,
  .rst__expandButton {
    -webkit-appearance: none;
            appearance: none;
    border: none;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 0 0 1px #000;
    width: 16px;
    height: 16px;
    padding: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }
  .rst__rtl.rst__collapseButton,
  .rst__rtl.rst__expandButton {
    transform: translate(50%, -50%);
  }
  .rst__collapseButton:focus,
  .rst__expandButton:focus {
    outline: none;
    box-shadow: 0 0 0 1px #000, 0 0 1px 3px #83bef9;
  }
  .rst__collapseButton:hover:not(:active),
  .rst__expandButton:hover:not(:active) {
    background-size: 24px;
    height: 20px;
    width: 20px;
  }
  
  .rst__collapseButton {
    background: #fff
      url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIGZpbGw9IiNGRkYiLz48ZyBzdHJva2U9IiM5ODk4OTgiIHN0cm9rZS13aWR0aD0iMS45IiA+PHBhdGggZD0iTTQuNSA5aDkiLz48L2c+Cjwvc3ZnPg==)
      no-repeat center;
  }
  
  .rst__expandButton {
    background: #fff
      url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCI+PGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiIGZpbGw9IiNGRkYiLz48ZyBzdHJva2U9IiM5ODk4OTgiIHN0cm9rZS13aWR0aD0iMS45IiA+PHBhdGggZD0iTTQuNSA5aDkiLz48cGF0aCBkPSJNOSA0LjV2OSIvPjwvZz4KPC9zdmc+)
      no-repeat center;
  }
  
  /**
   * Line for under a node with children
   */
  .rst__lineChildren {
    height: 100%;
    display: inline-block;
    position: absolute;
  }
  .rst__lineChildren::after {
    content: '';
    position: absolute;
    background-color: black;
    width: 1px;
    left: 50%;
    bottom: 0;
    height: 10px;
  }
  
  .rst__rtl.rst__lineChildren::after {
    right: 50%;
    left: auto;
    left: initial;
  }
  
  .rst__placeholder {
    position: relative;
    height: 68px;
    max-width: 300px;
    padding: 10px;
  }
  .rst__placeholder,
  .rst__placeholder > * {
    box-sizing: border-box;
  }
  .rst__placeholder::before {
    border: 3px dashed #73737359;
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    z-index: -1;
  }
  
  /**
   * The outline of where the element will go if dropped, displayed while dragging
   */
  .rst__placeholderLandingPad,
  .rst__placeholderCancelPad {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
  .rst__placeholderLandingPad *,
  .rst__placeholderCancelPad * {
    opacity: 0 !important;
  }
  .rst__placeholderLandingPad::before,
  .rst__placeholderCancelPad::before {
    background-color: lightblue;
    border-color: white;
  }
  
  /**
   * Alternate appearance of the landing pad when the dragged location is invalid
   */
  .rst__placeholderCancelPad::before {
    background-color: #e6a8ad;
  }
  
  /**
   * Extra class applied to VirtualScroll through className prop
   */
  .rst__virtualScrollOverride {
    overflow: auto !important;
  }
  .rst__virtualScrollOverride * {
    box-sizing: border-box;
  }
  
  .ReactVirtualized__Grid__innerScrollContainer {
    overflow: visible !important;
  }
  
  .rst__rtl .ReactVirtualized__Grid__innerScrollContainer {
    direction: rtl;
  }
  
  .ReactVirtualized__Grid {
    outline: none;
  }
  
  .rst__node {
    min-width: 100%;
    white-space: nowrap;
    position: relative;
    text-align: left;
    height: 62px;
  }
  
  .rst__node.rst__rtl {
    text-align: right;
  }
  
  .rst__nodeContent {
    position: absolute;
    top: 0;
    bottom: 0;
  }
  
  /* ==========================================================================
     Scaffold
  
      Line-overlaid blocks used for showing the tree structure
     ========================================================================== */
  .rst__lineBlock,
  .rst__absoluteLineBlock {
    height: 100%;
    position: relative;
    display: inline-block;
  }
  
  .rst__absoluteLineBlock {
    position: absolute;
    top: 0;
  }
  
  .rst__lineHalfHorizontalRight::before,
  .rst__lineFullVertical::after,
  .rst__lineHalfVerticalTop::after,
  .rst__lineHalfVerticalBottom::after {
    position: absolute;
    content: '';
    background-color: black;
  }
  
  /**
   * +-----+
   * |     |
   * |  +--+
   * |     |
   * +-----+
   */
  .rst__lineHalfHorizontalRight::before {
    height: 1px;
    top: 50%;
    right: 0;
    width: 50%;
  }
  
  .rst__rtl.rst__lineHalfHorizontalRight::before {
    left: 0;
    right: auto;
    right: initial;
  }
  
  /**
   * +--+--+
   * |  |  |
   * |  |  |
   * |  |  |
   * +--+--+
   */
  .rst__lineFullVertical::after,
  .rst__lineHalfVerticalTop::after,
  .rst__lineHalfVerticalBottom::after {
    width: 1px;
    left: 50%;
    top: 0;
    height: 100%;
  }
  
  /**
   * +--+--+
   * |  |  |
   * |  |  |
   * |  |  |
   * +--+--+
   */
  .rst__rtl.rst__lineFullVertical::after,
  .rst__rtl.rst__lineHalfVerticalTop::after,
  .rst__rtl.rst__lineHalfVerticalBottom::after {
    right: 50%;
    left: auto;
    left: initial;
  }
  
  /**
   * +-----+
   * |  |  |
   * |  +  |
   * |     |
   * +-----+
   */
  .rst__lineHalfVerticalTop::after {
    height: 50%;
  }
  
  /**
   * +-----+
   * |     |
   * |  +  |
   * |  |  |
   * +-----+
   */
  .rst__lineHalfVerticalBottom::after {
    top: auto;
    bottom: 0;
    height: 50%;
  }
  
  /* Highlight line for pointing to dragged row destination
     ========================================================================== */
  /**
   * +--+--+
   * |  |  |
   * |  |  |
   * |  |  |
   * +--+--+
   */
  .rst__highlightLineVertical {
    z-index: 3;
  }
  .rst__highlightLineVertical::before {
    position: absolute;
    content: '';
    background-color: #36c2f6;
    width: 8px;
    margin-left: -4px;
    left: 50%;
    top: 0;
    height: 100%;
  }
  
  .rst__rtl.rst__highlightLineVertical::before {
    margin-left: 0;
    margin-left: initial;
    margin-right: -4px;
    left: auto;
    left: initial;
    right: 50%;
  }
  
  @keyframes arrow-pulse {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    30% {
      transform: translate(0, 300%);
      opacity: 1;
    }
    70% {
      transform: translate(0, 700%);
      opacity: 1;
    }
    100% {
      transform: translate(0, 1000%);
      opacity: 0;
    }
  }
  .rst__highlightLineVertical::after {
    content: '';
    position: absolute;
    height: 0;
    margin-left: -4px;
    left: 50%;
    top: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid white;
    animation: arrow-pulse 1s infinite linear both;
  }
  
  .rst__rtl.rst__highlightLineVertical::after {
    margin-left: 0;
    margin-left: initial;
    margin-right: -4px;
    right: 50%;
    left: auto;
    left: initial;
  }
  
  /**
   * +-----+
   * |     |
   * |  +--+
   * |  |  |
   * +--+--+
   */
  .rst__highlightTopLeftCorner::before {
    z-index: 3;
    content: '';
    position: absolute;
    border-top: solid 8px #36c2f6;
    border-left: solid 8px #36c2f6;
    box-sizing: border-box;
    height: calc(50% + 4px);
    top: 50%;
    margin-top: -4px;
    right: 0;
    width: calc(50% + 4px);
  }
  
  .rst__rtl.rst__highlightTopLeftCorner::before {
    border-right: solid 8px #36c2f6;
    border-left: none;
    left: 0;
    right: auto;
    right: initial;
  }
  
  /**
   * +--+--+
   * |  |  |
   * |  |  |
   * |  +->|
   * +-----+
   */
  .rst__highlightBottomLeftCorner {
    z-index: 3;
  }
  .rst__highlightBottomLeftCorner::before {
    content: '';
    position: absolute;
    border-bottom: solid 8px #36c2f6;
    border-left: solid 8px #36c2f6;
    box-sizing: border-box;
    height: calc(100% + 4px);
    top: 0;
    right: 12px;
    width: calc(50% - 8px);
  }
  
  .rst__rtl.rst__highlightBottomLeftCorner::before {
    border-right: solid 8px #36c2f6;
    border-left: none;
    left: 12px;
    right: auto;
    right: initial;
  }
  
  .rst__highlightBottomLeftCorner::after {
    content: '';
    position: absolute;
    height: 0;
    right: 0;
    top: 100%;
    margin-top: -12px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #36c2f6;
  }
  
  .rst__rtl.rst__highlightBottomLeftCorner::after {
    left: 0;
    right: auto;
    right: initial;
    border-right: 12px solid #36c2f6;
    border-left: none;
  }
  
/*@tailwind base;*/

/**
 * Custom base styles
 */

:root {
}

* {
  /* Text rendering */
  text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

* :focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
  font-family: "Poppins", Roboto, Helvetica Neue, Arial, sans-serif;
  background-color: #121212;
}

body {
  font-size: 14px;
  line-height: 1.4;
  overflow-x: hidden;
  font-feature-settings: "salt";
}

html,
body {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  min-height: 100%;
  width: 100%;
  flex: 1 1 auto;
}

#root {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
}

h1,
.h1 {
  font-size: 24px;
}

h2,
.h2 {
  font-size: 20px;
}

h3,
.h3 {
  font-size: 16px;
}

h4,
.h4 {
  font-size: 15px;
}

h5,
.h5 {
  font-size: 13px;
}

h6,
.h6 {
  font-size: 12px;
}

.ps > .ps__rail-y,
.ps > .ps__rail-x {
  z-index: 99;
}

a[role="button"] {
  text-decoration: none;
}

[role="tooltip"] {
  z-index: 9999;
}

.MuiModal-root {
  z-index: 9999;
}

/* Medium Devices, Desktops Only */
@media only screen and (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0);
  }

  ::-webkit-scrollbar:hover {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.06);
  }

  ::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 20px;
  }

  ::-webkit-scrollbar-thumb:active {
    border-radius: 20px;
  }
}

form label {
  z-index: 99;
}

body.no-animate *,
body.no-animate *::before,
body.no-animate *::after {
  transition: none !important;
  animation: none !important;
}

button:focus {
  outline: none;
}

/* Removes webkit's autofill backgorund color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transitiondelay: 9999s;
  transitionproperty: background-color, color;
}

:focus {
  outline-color: transparent;
}

/*fullcalendar Fix*/
.fc-scrollgrid-section-liquid {
  height: 1px !important;
}

.MuiAutocomplete-popper {
  z-index: 999999999;
}

.CmkPageSimple-sidebarContent {
  height: 100% !important;
}

textarea {
  font-family: "Poppins";
}

/* .MuiTableCell-sizeMedium {
  background: #fff;
}

.MuiToolbar-gutters {
  background: #fff;
  border-radius: 14px;
} */

.rst__moveHandle {
  border-radius: 16px 0px 0px 16px;
  -webkit-border-radius: 16px 0px 0px 16px;
  -moz-border-radius: 16px 0px 0px 16px;
  box-shadow: none;
}

.rst__rowContents {
  border-radius: 0px 16px 16px 0px;
  -webkit-border-radius: 0px 16px 16px 0px;
  -moz-border-radius: 0px 16px 16px 0px;
  box-shadow: none;
}

.rst__row {
  border-radius: 16px 0px 0px 16px;
  -webkit-border-radius: 16px 0px 0px 16px;
  -moz-border-radius: 16px 0px 0px 16px;
  box-shadow: none;
}

.rst__placeholder::before {
  border: 2px dashed #d9d9d9;
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  z-index: -1;
  border-radius: 16px 16px 16px 16px !important;
  -webkit-border-radius: 16px 16px 16px 16px !important;
  -moz-border-radius: 16px 16px 16px 16px !important;
}

.rst__rowLandingPad::before,
.rst__rowCancelPad::before {
  /* background-color: #b4d7e9; */
  border: 2px dashed white;
  border-radius: 20px;
}

.rst__rowSearchMatch {
  border-radius: 16px 16px 16px 16px !important;
  -webkit-border-radius: 16px 16px 16px 16px !important;
  -moz-border-radius: 16px 16px 16px 16px !important;
  outline: solid 3px #a3a3a3;
}

.rst__rowSearchFocus {
  outline: solid 3px #ff5656;
}

.stickydiv {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  z-index: 9999;
}

.container {
  max-width: 100% !important;
}

.tablediv {
  box-shadow: 0px 0px 6px #00000024;
  border-radius: 20px;
  margin-top: 4px;
}

.ant-select-dropdown {
  z-index: 999999 !important;
}

.ellipsis-container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*----------------------------------------------------------------*/
/*  Print
/*----------------------------------------------------------------*/
@media all {
    /* Never show page breaks in normal view */
    .page-break-after,
    .page-break-before {
        display: none;
    }
}

@media print {
    /* html and body tweaks */
    html, body {
        height: auto !important;
        overflow: visible !important;
        overflow: initial !important;
        background: none
    }

    /* Page breaks */
    .page-break-after {
        display: block;
        page-break-after: always;
        position: relative;
    }

    .page-break-before {
        display: block;
        page-break-before: always;
        position: relative;
    }

    /* General styles */
    #cmk-toolbar,
    #cmk-footer,
    #cmk-navbar,
    #cmk-settings-presets,
    #cmk-layout .ps > .ps__rail-x,
    #cmk-layout .ps > .ps__rail-y {
        display: none !important;
    }

    #cmk-layout .ps {
        overflow: visible !important;
    }
}

/**
Basic Table Styles
 */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

table.simple {
  width: 100%;
  border: none;
  border-spacing: 0;
  text-align: left;
}

table.simple thead tr th {
  padding: 16px 8px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

table.simple thead tr th:first-child {
  padding-left: 24px;
}

table.simple thead tr th:last-child {
  padding-right: 24px;
}

table.simple tbody tr td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

table.simple tbody tr td:first-child {
  padding-left: 24px;
}

table.simple tbody tr td:last-child {
  padding-right: 24px;
}

table.simple tbody tr:last-child td {
  border-bottom: none;
}

table.simple.clickable tbody tr {
  cursor: pointer;
}

table.simple.clickable tbody tr:hover {
  background: rgba(0, 0, 0, 0.03);
}

table.simple.borderless {
  border: none;
}

table.simple.borderless tbody tr td {
  border: none;
}

table.simple.borderless thead tr th {
  border: none;
}

.MuiTablePagination-toolbar {
  min-height: 25px;
  margin-top: -2px;
}

code[class*="language-"],
pre[class*="language-"] {
    text-align: left;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
    color: #c3cee3;
    background: #263238;
    font-family: Roboto Mono,"Liberation Mono",Menlo,Courier,monospace;
    font-size: 1em;
    line-height: 1.5;
    tab-size: 4;
    -webkit-hyphens: none;
    hyphens: none;
}

code[class*="language-"]::selection,
pre[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"] ::selection {
    background: #000000;
}

:not(pre) > code[class*="language-"] {
    white-space: normal;
    border-radius: 0.2em;
    padding: 0.1em;
}

pre[class*="language-"] {
    overflow: auto;
    position: relative;
    padding: 12px;
    border-radius: 4px;;
}

.language-css > code,
.language-sass > code,
.language-scss > code {
    color: #fd9170;
}

[class*="language-"] .namespace {
    opacity: 0.7;
}

.token.plain-text {
    color: #c3cee3;
}

.token.atrule {
    color: #c792ea;
}

.token.attr-name {
    color: #ffcb6b;
}

.token.attr-value {
    color: #c3e88d;
}

.token.attribute {
    color: #c3e88d;
}

.token.boolean {
    color: #c792ea;
}

.token.builtin {
    color: #ffcb6b;
}

.token.cdata {
    color: #80cbc4;
}

.token.char {
    color: #80cbc4;
}

.token.class {
    color: #ffcb6b;
}

.token.class-name {
    color: #82aaff;
}

.token.color {
    color: #f2ff00;
}

.token.comment {
    color: #546e7a;
}

.token.constant {
    color: #c792ea;
}

.token.deleted {
    color: #f07178;
}

.token.doctype {
    color: #546e7a;
}

.token.entity {
    color: #f07178;
}

.token.function {
    color: #c792ea;
}

.token.hexcode {
    color: #f2ff00;
}

.token.id {
    color: #c792ea;
    font-weight: bold;
}

.token.important {
    color: #c792ea;
    font-weight: bold;
}

.token.inserted {
    color: #80cbc4;
}

.token.keyword {
    color: #c792ea;
    font-style: italic;
}

.token.number {
    color: #fd9170;
}

.token.operator {
    color: #89ddff;
}

.token.prolog {
    color: #546e7a;
}

.token.property {
    color: #80cbc4;
}

.token.pseudo-class {
    color: #c3e88d;
}

.token.pseudo-element {
    color: #c3e88d;
}

.token.punctuation {
    color: #89ddff;
}

.token.regex {
    color: #f2ff00;
}

.token.selector {
    color: #f07178;
}

.token.string {
    color: #c3e88d;
}

.token.symbol {
    color: #c792ea;
}

.token.tag {
    color: #f07178;
}

.token.unit {
    color: #f07178;
}

.token.url {
    color: #fd9170;
}

.token.variable {
    color: #f07178;
}

/**
 * Component classes registered by plugins.
 *
 */

.container{

    width: 100%
}

.\!container{

    width: 100% !important
}

@media (min-width: 350px){

    .container{

        max-width: 350px
    }

    .\!container{

        max-width: 350px !important
    }
}

@media (min-width: 600px){

    .container{

        max-width: 600px
    }

    .\!container{

        max-width: 600px !important
    }
}

@media (min-width: 810px){

    .container{

        max-width: 810px
    }

    .\!container{

        max-width: 810px !important
    }
}

@media (min-width: 960px){

    .container{

        max-width: 960px
    }

    .\!container{

        max-width: 960px !important
    }
}

@media (min-width: 1050px){

    .container{

        max-width: 1050px
    }

    .\!container{

        max-width: 1050px !important
    }
}

@media (min-width: 1280px){

    .container{

        max-width: 1280px
    }

    .\!container{

        max-width: 1280px !important
    }
}

@media (min-width: 1420px){

    .container{

        max-width: 1420px
    }

    .\!container{

        max-width: 1420px !important
    }
}

@media (min-width: 1920px){

    .container{

        max-width: 1920px
    }

    .\!container{

        max-width: 1920px !important
    }
}

/**
 * Tailwind's utility classes, generated based on your config file.
 */

.pointer-events-none {

    pointer-events: none;
}

.visible {

    visibility: visible;
}

.invisible {

    visibility: hidden;
}

.collapse {

    visibility: collapse;
}

.\!collapse {

    visibility: collapse !important;
}

.static {

    position: static;
}

.fixed {

    position: fixed;
}

.absolute {

    position: absolute;
}

.\!absolute {

    position: absolute !important;
}

.relative {

    position: relative;
}

.sticky {

    position: -webkit-sticky;

    position: sticky;
}

.\!sticky {

    position: -webkit-sticky !important;

    position: sticky !important;
}

.inset-0 {

    top: 0px;

    right: 0px;

    bottom: 0px;

    left: 0px;
}

.inset-y-0 {

    top: 0px;

    bottom: 0px;
}

.inset-x-0 {

    left: 0px;

    right: 0px;
}

.top-0 {

    top: 0px;
}

.right-0 {

    right: 0px;
}

.\!left-\[16px\] {

    left: 16px !important;
}

.-top-64 {

    top: -6.4rem;
}

.-right-64 {

    right: -6.4rem;
}

.bottom-10 {

    bottom: 1.0rem;
}

.right-10 {

    right: 1.0rem;
}

.bottom-0 {

    bottom: 0px;
}

.left-0 {

    left: 0px;
}

.bottom-2 {

    bottom: 0.2rem;
}

.top-1\/2 {

    top: 50%;
}

.left-8 {

    left: 0.8rem;
}

.right-8 {

    right: 0.8rem;
}

.bottom-8 {

    bottom: 0.8rem;
}

.left-5 {

    left: 0.5rem;
}

.-top-5 {

    top: -0.5rem;
}

.-right-5 {

    right: -0.5rem;
}

.left-10 {

    left: 1.0rem;
}

.z-99999 {

    z-index: 99999 !important;
}

.\!z-9999999 {

    z-index: 9999999 !important;
}

.z-\[999999\] {

    z-index: 999999;
}

.z-10 {

    z-index: 10;
}

.z-9999 {

    z-index: 9999;
}

.z-99 {

    z-index: 99;
}

.z-50 {

    z-index: 50;
}

.z-40 {

    z-index: 40;
}

.z-9999999 {

    z-index: 9999999;
}

.z-\[21\] {

    z-index: 21;
}

.z-20 {

    z-index: 20;
}

.z-30 {

    z-index: 30;
}

.z-\[5\] {

    z-index: 5;
}

.z-999 {

    z-index: 999;
}

.z-\[9\] {

    z-index: 9;
}

.order-first {

    order: -9999;
}

.col-span-2 {

    grid-column: span 2 / span 2;
}

.m-auto {

    margin: auto;
}

.m-0 {

    margin: 0px;
}

.\!m-0 {

    margin: 0px !important;
}

.m-8 {

    margin: 0.8rem;
}

.m-32 {

    margin: 3.2rem;
}

.m-10 {

    margin: 1.0rem;
}

.mx-4 {

    margin-left: 0.4rem;

    margin-right: 0.4rem;
}

.my-14 {

    margin-top: 1.4rem;

    margin-bottom: 1.4rem;
}

.mx-16 {

    margin-left: 1.6rem;

    margin-right: 1.6rem;
}

.mx-10 {

    margin-left: 1.0rem;

    margin-right: 1.0rem;
}

.my-32 {

    margin-top: 3.2rem;

    margin-bottom: 3.2rem;
}

.mx-8 {

    margin-left: 0.8rem;

    margin-right: 0.8rem;
}

.my-10 {

    margin-top: 1.0rem;

    margin-bottom: 1.0rem;
}

.my-16 {

    margin-top: 1.6rem;

    margin-bottom: 1.6rem;
}

.my-8 {

    margin-top: 0.8rem;

    margin-bottom: 0.8rem;
}

.-mx-8 {

    margin-left: -0.8rem;

    margin-right: -0.8rem;
}

.mx-auto {

    margin-left: auto;

    margin-right: auto;
}

.mx-12 {

    margin-left: 1.2rem;

    margin-right: 1.2rem;
}

.my-5 {

    margin-top: 0.5rem;

    margin-bottom: 0.5rem;
}

.mx-0 {

    margin-left: 0px;

    margin-right: 0px;
}

.my-20 {

    margin-top: 2rem;

    margin-bottom: 2rem;
}

.my-3 {

    margin-top: 0.3rem;

    margin-bottom: 0.3rem;
}

.\!my-4 {

    margin-top: 0.4rem !important;

    margin-bottom: 0.4rem !important;
}

.my-12 {

    margin-top: 1.2rem;

    margin-bottom: 1.2rem;
}

.-mx-12 {

    margin-left: -1.2rem;

    margin-right: -1.2rem;
}

.mx-5 {

    margin-left: 0.5rem;

    margin-right: 0.5rem;
}

.mr-8 {

    margin-right: 0.8rem;
}

.ml-10 {

    margin-left: 1.0rem;
}

.mt-8 {

    margin-top: 0.8rem;
}

.mb-4 {

    margin-bottom: 0.4rem;
}

.mb-16 {

    margin-bottom: 1.6rem;
}

.mt-16 {

    margin-top: 1.6rem;
}

.mt-48 {

    margin-top: 4.8rem;
}

.mt-20 {

    margin-top: 2rem;
}

.mr-5 {

    margin-right: 0.5rem;
}

.mt-10 {

    margin-top: 1.0rem;
}

.ml-auto {

    margin-left: auto;
}

.\!mt-auto {

    margin-top: auto !important;
}

.mt-24 {

    margin-top: 2.4rem;
}

.mt-12 {

    margin-top: 1.2rem;
}

.mb-24 {

    margin-bottom: 2.4rem;
}

.ml-24 {

    margin-left: 2.4rem;
}

.mb-8 {

    margin-bottom: 0.8rem;
}

.mr-4 {

    margin-right: 0.4rem;
}

.mb-32 {

    margin-bottom: 3.2rem;
}

.mt-32 {

    margin-top: 3.2rem;
}

.ml-5 {

    margin-left: 0.5rem;
}

.mt-0 {

    margin-top: 0px;
}

.mr-0 {

    margin-right: 0px;
}

.-mb-10 {

    margin-bottom: -1.0rem;
}

.-mt-24 {

    margin-top: -2.4rem;
}

.mt-4 {

    margin-top: 0.4rem;
}

.mr-10 {

    margin-right: 1.0rem;
}

.ml-12 {

    margin-left: 1.2rem;
}

.mr-12 {

    margin-right: 1.2rem;
}

.mb-5 {

    margin-bottom: 0.5rem;
}

.mt-5 {

    margin-top: 0.5rem;
}

.ml-3 {

    margin-left: 0.3rem;
}

.mt-40 {

    margin-top: 4rem;
}

.ml-8 {

    margin-left: 0.8rem;
}

.\!mb-112 {

    margin-bottom: 11.2rem !important;
}

.ml-16 {

    margin-left: 1.6rem;
}

.ml-6 {

    margin-left: 0.6rem;
}

.mt-2 {

    margin-top: 0.2rem;
}

.mb-0 {

    margin-bottom: 0px;
}

.mb-12 {

    margin-bottom: 1.2rem;
}

.\!ml-auto {

    margin-left: auto !important;
}

.ml-0 {

    margin-left: 0px;
}

.\!mr-4 {

    margin-right: 0.4rem !important;
}

.\!mr-auto {

    margin-right: auto !important;
}

.-mt-48 {

    margin-top: -4.8rem;
}

.ml-4 {

    margin-left: 0.4rem;
}

.ml-2 {

    margin-left: 0.2rem;
}

.ml-\[172px\] {

    margin-left: 172px;
}

.ml-14 {

    margin-left: 1.4rem;
}

.mt-1 {

    margin-top: 0.1rem;
}

.mt-auto {

    margin-top: auto;
}

.-ml-10 {

    margin-left: -1.0rem;
}

.\!mt-0 {

    margin-top: 0px !important;
}

.mr-24 {

    margin-right: 2.4rem;
}

.mb-20 {

    margin-bottom: 2rem;
}

.mt-6 {

    margin-top: 0.6rem;
}

.-ml-4 {

    margin-left: -0.4rem;
}

.\!mb-auto {

    margin-bottom: auto !important;
}

.-mr-20 {

    margin-right: -2rem;
}

.mt-\[28px\] {

    margin-top: 28px;
}

.ml-32 {

    margin-left: 3.2rem;
}

.mr-3 {

    margin-right: 0.3rem;
}

.mb-10 {

    margin-bottom: 1.0rem;
}

.\!mb-0 {

    margin-bottom: 0px !important;
}

.mr-6 {

    margin-right: 0.6rem;
}

.ml-20 {

    margin-left: 2rem;
}

.mt-14 {

    margin-top: 1.4rem;
}

.block {

    display: block;
}

.\!block {

    display: block !important;
}

.inline-block {

    display: inline-block;
}

.inline {

    display: inline;
}

.flex {

    display: flex;
}

.inline-flex {

    display: inline-flex;
}

.table {

    display: table;
}

.\!table {

    display: table !important;
}

.table-column {

    display: table-column;
}

.table-row {

    display: table-row;
}

.grid {

    display: grid;
}

.\!grid {

    display: grid !important;
}

.hidden {

    display: none;
}

.h-full {

    height: 100%;
}

.h-screen {

    height: 100vh;
}

.h-32 {

    height: 3.2rem;
}

.h-1 {

    height: 0.1rem;
}

.h-0 {

    height: 0px;
}

.h-2 {

    height: 0.2rem;
}

.h-7 {

    height: 0.7rem;
}

.h-3 {

    height: 0.3rem;
}

.h-28 {

    height: 2.8rem;
}

.h-40 {

    height: 4rem;
}

.h-20 {

    height: 2rem;
}

.h-auto {

    height: auto;
}

.h-\[65px\] {

    height: 65px;
}

.h-56 {

    height: 5.6rem;
}

.h-64 {

    height: 6.4rem;
}

.h-6 {

    height: 0.6rem;
}

.\!h-full {

    height: 100% !important;
}

.h-44 {

    height: 4.4rem;
}

.h-128 {

    height: 12.8rem;
}

.h-16 {

    height: 1.6rem;
}

.h-48 {

    height: 4.8rem;
}

.h-120 {

    height: 12rem;
}

.h-96 {

    height: 9.6rem;
}

.h-14 {

    height: 1.4rem;
}

.h-36 {

    height: 3.6rem;
}

.h-fit {

    height: -webkit-fit-content;

    height: fit-content;
}

.h-8 {

    height: 0.8rem;
}

.\!h-auto {

    height: auto !important;
}

.h-\[50px\] {

    height: 50px;
}

.\!h-12 {

    height: 1.2rem !important;
}

.h-24 {

    height: 2.4rem;
}

.h-60 {

    height: 6rem;
}

.\!h-32 {

    height: 3.2rem !important;
}

.h-min {

    height: -webkit-min-content;

    height: min-content;
}

.h-\[40px\] {

    height: 40px;
}

.h-360 {

    height: 36rem;
}

.\!h-224 {

    height: 22.4rem !important;
}

.\!h-\[30px\] {

    height: 30px !important;
}

.h-10 {

    height: 1.0rem;
}

.h-12 {

    height: 1.2rem;
}

.\!h-20 {

    height: 2rem !important;
}

.h-80 {

    height: 8rem;
}

.h-4 {

    height: 0.4rem;
}

.\!h-\[40px\] {

    height: 40px !important;
}

.\!h-56 {

    height: 5.6rem !important;
}

.h-\[560px\] {

    height: 560px;
}

.h-\[20px\] {

    height: 20px;
}

.\!h-80 {

    height: 8rem !important;
}

.h-\[26\.4px\] {

    height: 26.4px;
}

.h-72 {

    height: 7.2rem;
}

.h-\[7px\] {

    height: 7px;
}

.h-\[6px\] {

    height: 6px;
}

.h-\[30px\] {

    height: 30px;
}

.h-\[8px\] {

    height: 8px;
}

.h-\[80\%\] {

    height: 80%;
}

.h-52 {

    height: 5.2rem;
}

.max-h-256 {

    max-height: 25.6rem;
}

.\!max-h-full {

    max-height: 100% !important;
}

.max-h-none {

    max-height: none;
}

.max-h-\[95\%\] {

    max-height: 95%;
}

.max-h-min {

    max-height: -webkit-min-content;

    max-height: min-content;
}

.max-h-full {

    max-height: 100%;
}

.max-h-64 {

    max-height: 6.4rem;
}

.max-h-360 {

    max-height: 36rem;
}

.max-h-224 {

    max-height: 22.4rem;
}

.max-h-\[250px\] {

    max-height: 250px;
}

.max-h-320 {

    max-height: 32rem;
}

.max-h-\[560px\] {

    max-height: 560px;
}

.max-h-88 {

    max-height: 8.8rem;
}

.max-h-200 {

    max-height: 20rem;
}

.max-h-112 {

    max-height: 11.2rem;
}

.max-h-\[40px\] {

    max-height: 40px;
}

.max-h-\[120px\] {

    max-height: 120px;
}

.max-h-\[50\%\] {

    max-height: 50%;
}

.max-h-192 {

    max-height: 19.2rem;
}

.max-h-120 {

    max-height: 12rem;
}

.min-h-px {

    min-height: 1px;
}

.min-h-0 {

    min-height: 0px;
}

.min-h-full {

    min-height: 100%;
}

.min-h-\[65px\] {

    min-height: 65px;
}

.min-h-40 {

    min-height: 4rem;
}

.\!min-h-224 {

    min-height: 22.4rem !important;
}

.\!min-h-max {

    min-height: -webkit-max-content !important;

    min-height: max-content !important;
}

.\!min-h-112 {

    min-height: 11.2rem !important;
}

.min-h-auto {

    min-height: auto;
}

.min-h-screen {

    min-height: 100vh;
}

.\!min-h-0 {

    min-height: 0px !important;
}

.min-h-36 {

    min-height: 3.6rem;
}

.min-h-fit {

    min-height: -webkit-fit-content;

    min-height: fit-content;
}

.min-h-48 {

    min-height: 4.8rem;
}

.min-h-64 {

    min-height: 6.4rem;
}

.\!min-h-\[50px\] {

    min-height: 50px !important;
}

.min-h-88 {

    min-height: 8.8rem;
}

.min-h-\[20px\] {

    min-height: 20px;
}

.min-h-32 {

    min-height: 3.2rem;
}

.min-h-96 {

    min-height: 9.6rem;
}

.min-h-44 {

    min-height: 4.4rem;
}

.min-h-\[272px\] {

    min-height: 272px;
}

.min-h-480 {

    min-height: 48rem;
}

.min-h-\[380px\] {

    min-height: 380px;
}

.min-h-\[280px\] {

    min-height: 280px;
}

.w-full {

    width: 100%;
}

.w-32 {

    width: 3.2rem;
}

.w-28 {

    width: 2.8rem;
}

.w-64 {

    width: 6.4rem;
}

.w-20 {

    width: 2rem;
}

.w-auto {

    width: auto;
}

.w-56 {

    width: 5.6rem;
}

.\!w-full {

    width: 100% !important;
}

.w-128 {

    width: 12.8rem;
}

.w-24 {

    width: 2.4rem;
}

.w-40 {

    width: 4rem;
}

.w-320 {

    width: 32rem;
}

.w-48 {

    width: 4.8rem;
}

.w-120 {

    width: 12rem;
}

.w-96 {

    width: 9.6rem;
}

.w-72 {

    width: 7.2rem;
}

.\!w-fit {

    width: -webkit-fit-content !important;

    width: fit-content !important;
}

.w-\[1ch\] {

    width: 1ch;
}

.w-4 {

    width: 0.4rem;
}

.w-36 {

    width: 3.6rem;
}

.w-1\/4 {

    width: 25%;
}

.w-16 {

    width: 1.6rem;
}

.w-1\/2 {

    width: 50%;
}

.w-44 {

    width: 4.4rem;
}

.\!w-12 {

    width: 1.2rem !important;
}

.w-60 {

    width: 6rem;
}

.\!w-32 {

    width: 3.2rem !important;
}

.\!w-auto {

    width: auto !important;
}

.w-\[80\%\] {

    width: 80%;
}

.w-\[70\%\] {

    width: 70%;
}

.w-5 {

    width: 0.5rem;
}

.w-\[40px\] {

    width: 40px;
}

.\!w-60 {

    width: 6rem !important;
}

.w-fit {

    width: -webkit-fit-content;

    width: fit-content;
}

.w-10 {

    width: 1.0rem;
}

.w-12 {

    width: 1.2rem;
}

.\!w-20 {

    width: 2rem !important;
}

.w-200 {

    width: 20rem;
}

.w-400 {

    width: 40rem;
}

.w-\[30\%\] {

    width: 30%;
}

.w-\[40\%\] {

    width: 40%;
}

.w-\[10\%\] {

    width: 10%;
}

.w-80 {

    width: 8rem;
}

.w-2\/3 {

    width: 66.666667%;
}

.w-\[44\%\] {

    width: 44%;
}

.\!w-\[40px\] {

    width: 40px !important;
}

.\!w-56 {

    width: 5.6rem !important;
}

.w-\[20\%\] {

    width: 20%;
}

.\!w-\[20\%\] {

    width: 20% !important;
}

.w-\[20px\] {

    width: 20px;
}

.\!w-80 {

    width: 8rem !important;
}

.w-\[84\%\] {

    width: 84%;
}

.w-\[26\%\] {

    width: 26%;
}

.w-\[7px\] {

    width: 7px;
}

.w-\[6px\] {

    width: 6px;
}

.w-\[30px\] {

    width: 30px;
}

.w-\[8px\] {

    width: 8px;
}

.w-3\/4 {

    width: 75%;
}

.w-8 {

    width: 0.8rem;
}

.w-6 {

    width: 0.6rem;
}

.w-52 {

    width: 5.2rem;
}

.min-w-0 {

    min-width: 0px;
}

.min-w-20 {

    min-width: 2rem;
}

.min-w-40 {

    min-width: 4rem;
}

.min-w-\[3ch\] {

    min-width: 3ch;
}

.min-w-64 {

    min-width: 6.4rem;
}

.min-w-\[320px\] {

    min-width: 320px;
}

.min-w-256 {

    min-width: 25.6rem;
}

.min-w-max {

    min-width: -webkit-max-content;

    min-width: max-content;
}

.min-w-32 {

    min-width: 3.2rem;
}

.min-w-fit {

    min-width: -webkit-fit-content;

    min-width: fit-content;
}

.\!min-w-32 {

    min-width: 3.2rem !important;
}

.min-w-5 {

    min-width: 0.5rem;
}

.\!min-w-10 {

    min-width: 1.0rem !important;
}

.\!min-w-0 {

    min-width: 0px !important;
}

.\!min-w-40 {

    min-width: 4rem !important;
}

.min-w-10 {

    min-width: 1.0rem;
}

.min-w-\[160px\] {

    min-width: 160px;
}

.min-w-\[5ch\] {

    min-width: 5ch;
}

.min-w-px {

    min-width: 1px;
}

.min-w-56 {

    min-width: 5.6rem;
}

.min-w-\[18px\] {

    min-width: 18px;
}

.min-w-88 {

    min-width: 8.8rem;
}

.min-w-\[20px\] {

    min-width: 20px;
}

.min-w-16 {

    min-width: 1.6rem;
}

.min-w-96 {

    min-width: 9.6rem;
}

.min-w-full {

    min-width: 100%;
}

.min-w-\[36px\] {

    min-width: 36px;
}

.min-w-\[auto\] {

    min-width: auto;
}

.min-w-8 {

    min-width: 0.8rem;
}

.max-w-2xl {

    max-width: 65.6rem;
}

.max-w-3xl {

    max-width: 76.8rem;
}

.max-w-full {

    max-width: 100%;
}

.max-w-md {

    max-width: 64rem;
}

.\!max-w-full {

    max-width: 100% !important;
}

.\!max-w-400 {

    max-width: 40rem !important;
}

.max-w-\[320px\] {

    max-width: 320px;
}

.max-w-\[15ch\] {

    max-width: 15ch;
}

.\!max-w-\[215px\] {

    max-width: 215px !important;
}

.\!max-w-\[280px\] {

    max-width: 280px !important;
}

.max-w-320 {

    max-width: 32rem;
}

.max-w-5 {

    max-width: 0.5rem;
}

.max-w-\[500px\] {

    max-width: 500px;
}

.max-w-64 {

    max-width: 6.4rem;
}

.\!max-w-40 {

    max-width: 4rem !important;
}

.max-w-\[40\%\] {

    max-width: 40%;
}

.max-w-200 {

    max-width: 20rem;
}

.max-w-88 {

    max-width: 8.8rem;
}

.max-w-10 {

    max-width: 1.0rem;
}

.\!max-w-fit {

    max-width: -webkit-fit-content !important;

    max-width: fit-content !important;
}

.max-w-fit {

    max-width: -webkit-fit-content;

    max-width: fit-content;
}

.\!max-w-\[80\%\] {

    max-width: 80% !important;
}

.max-w-\[calc\(100\%-150px\)\] {

    max-width: calc(100% - 150px);
}

.\!max-w-200 {

    max-width: 20rem !important;
}

.max-w-8 {

    max-width: 0.8rem;
}

.flex-1 {

    flex: 1 1;
}

.flex-auto {

    flex: 1 1 auto;
}

.flex-none {

    flex: none;
}

.flex-shrink-0 {

    flex-shrink: 0;
}

.shrink-0 {

    flex-shrink: 0;
}

.shrink {

    flex-shrink: 1;
}

.flex-grow-0 {

    flex-grow: 0;
}

.\!flex-grow-0 {

    flex-grow: 0 !important;
}

.grow {

    flex-grow: 1;
}

.grow-0 {

    flex-grow: 0;
}

.-translate-y-1\/2 {

    --tw-translate-y: -50%;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-90 {

    --tw-rotate: 90deg;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-90 {

    --tw-rotate: -90deg;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {

    --tw-rotate: 180deg;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-0 {

    --tw-rotate: 0deg;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\!transform-none {

    transform: none !important;
}

.cursor-default {

    cursor: default;
}

.cursor-grab {

    cursor: grab;
}

.cursor-ew-resize {

    cursor: ew-resize;
}

.cursor-pointer {

    cursor: pointer;
}

.cursor-move {

    cursor: move;
}

.cursor-text {

    cursor: text;
}

.touch-none {

    touch-action: none;
}

.select-none {

    -webkit-user-select: none;

            user-select: none;
}

.select-all {

    -webkit-user-select: all;

            user-select: all;
}

.resize {

    resize: both;
}

.grid-cols-2 {

    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-1 {

    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {

    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-3 {

    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-rows-2 {

    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.flex-row {

    flex-direction: row;
}

.flex-col {

    flex-direction: column;
}

.flex-wrap {

    flex-wrap: wrap;
}

.flex-nowrap {

    flex-wrap: nowrap;
}

.items-start {

    align-items: flex-start;
}

.items-end {

    align-items: flex-end;
}

.items-center {

    align-items: center;
}

.items-baseline {

    align-items: baseline;
}

.items-stretch {

    align-items: stretch;
}

.justify-start {

    justify-content: flex-start;
}

.justify-end {

    justify-content: flex-end;
}

.justify-center {

    justify-content: center;
}

.justify-between {

    justify-content: space-between;
}

.justify-around {

    justify-content: space-around;
}

.justify-evenly {

    justify-content: space-evenly;
}

.gap-8 {

    gap: 0.8rem;
}

.gap-16 {

    gap: 1.6rem;
}

.gap-4 {

    gap: 0.4rem;
}

.gap-12 {

    gap: 1.2rem;
}

.gap-2 {

    gap: 0.2rem;
}

.gap-5 {

    gap: 0.5rem;
}

.gap-6 {

    gap: 0.6rem;
}

.gap-10 {

    gap: 1.0rem;
}

.gap-32 {

    gap: 3.2rem;
}

.gap-3 {

    gap: 0.3rem;
}

.gap-14 {

    gap: 1.4rem;
}

.gap-24 {

    gap: 2.4rem;
}

.gap-20 {

    gap: 2rem;
}

.gap-x-16 {

    column-gap: 1.6rem;
}

.gap-y-4 {

    row-gap: 0.4rem;
}

.gap-y-2 {

    row-gap: 0.2rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.4rem * var(--tw-space-x-reverse));

    margin-left: calc(0.4rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-12 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(1.2rem * var(--tw-space-x-reverse));

    margin-left: calc(1.2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.8rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.8rem * var(--tw-space-y-reverse));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.8rem * var(--tw-space-x-reverse));

    margin-left: calc(0.8rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-10 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.0rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.0rem * var(--tw-space-y-reverse));
}

.space-y-24 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(2.4rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(2.4rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.2rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.2rem * var(--tw-space-y-reverse));
}

.space-x-14 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(1.4rem * var(--tw-space-x-reverse));

    margin-left: calc(1.4rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-5 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.5rem * var(--tw-space-x-reverse));

    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-16 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.6rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.6rem * var(--tw-space-y-reverse));
}

.space-y-20 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.4rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.4rem * var(--tw-space-y-reverse));
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.3rem * var(--tw-space-x-reverse));

    margin-left: calc(0.3rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.1rem * var(--tw-space-x-reverse));

    margin-left: calc(0.1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-10 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(1.0rem * var(--tw-space-x-reverse));

    margin-left: calc(1.0rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.3rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.3rem * var(--tw-space-y-reverse));
}

.space-x-0 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0px * var(--tw-space-x-reverse));

    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-16 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(1.6rem * var(--tw-space-x-reverse));

    margin-left: calc(1.6rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-20 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(2rem * var(--tw-space-x-reverse));

    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.1rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.6rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.6rem * var(--tw-space-y-reverse));
}

.space-y-14 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(1.4rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(1.4rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.2rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.2rem * var(--tw-space-y-reverse));
}

.space-x-24 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(2.4rem * var(--tw-space-x-reverse));

    margin-left: calc(2.4rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.2rem * var(--tw-space-x-reverse));

    margin-left: calc(0.2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.6rem * var(--tw-space-x-reverse));

    margin-left: calc(0.6rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-32 > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(3.2rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(3.2rem * var(--tw-space-y-reverse));
}

.divide-y-1 > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-y-reverse: 0;

    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));

    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-x-1 > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-x-reverse: 0;

    border-right-width: calc(1px * var(--tw-divide-x-reverse));

    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-x > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-x-reverse: 0;

    border-right-width: calc(1px * var(--tw-divide-x-reverse));

    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {

    --tw-divide-y-reverse: 0;

    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));

    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.self-start {

    align-self: flex-start;
}

.self-center {

    align-self: center;
}

.overflow-auto {

    overflow: auto;
}

.\!overflow-auto {

    overflow: auto !important;
}

.overflow-hidden {

    overflow: hidden;
}

.\!overflow-hidden {

    overflow: hidden !important;
}

.\!overflow-visible {

    overflow: visible !important;
}

.overflow-visible {

    overflow: visible;
}

.overflow-scroll {

    overflow: scroll;
}

.overflow-x-auto {

    overflow-x: auto;
}

.overflow-y-auto {

    overflow-y: auto;
}

.\!overflow-y-auto {

    overflow-y: auto !important;
}

.overflow-x-hidden {

    overflow-x: hidden;
}

.overflow-y-visible {

    overflow-y: visible;
}

.overflow-y-scroll {

    overflow-y: scroll;
}

.overscroll-contain {

    overscroll-behavior: contain;
}

.truncate {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.text-ellipsis {

    text-overflow: ellipsis;
}

.whitespace-normal {

    white-space: normal;
}

.whitespace-nowrap {

    white-space: nowrap;
}

.whitespace-pre-line {

    white-space: pre-line;
}

.whitespace-pre-wrap {

    white-space: pre-wrap;
}

.break-words {

    overflow-wrap: break-word;
}

.break-all {

    word-break: break-all;
}

.\!break-all {

    word-break: break-all !important;
}

.rounded-4 {

    border-radius: .4rem;
}

.rounded {

    border-radius: .4rem;
}

.rounded-6 {

    border-radius: .6rem;
}

.rounded-8 {

    border-radius: .8rem;
}

.\!rounded-none {

    border-radius: 0px !important;
}

.\!rounded-full {

    border-radius: 9999px !important;
}

.rounded-none {

    border-radius: 0px;
}

.rounded-full {

    border-radius: 9999px;
}

.\!rounded-20 {

    border-radius: 2rem !important;
}

.\!rounded-4 {

    border-radius: .4rem !important;
}

.rounded-lg {

    border-radius: .8rem;
}

.rounded-md {

    border-radius: .6rem;
}

.rounded-0 {

    border-radius: 0px;
}

.\!rounded-6 {

    border-radius: .6rem !important;
}

.rounded-12 {

    border-radius: 1.2rem;
}

.rounded-2xl {

    border-radius: 1.6rem;
}

.rounded-\[16px\] {

    border-radius: 16px;
}

.rounded-xl {

    border-radius: 1.2rem;
}

.rounded-16 {

    border-radius: 1.6rem;
}

.\!rounded-2 {

    border-radius: .2rem !important;
}

.\!rounded-0 {

    border-radius: 0px !important;
}

.rounded-sm {

    border-radius: .2rem;
}

.rounded-l-3xl {

    border-top-left-radius: 2.4rem;

    border-bottom-left-radius: 2.4rem;
}

.\!rounded-l-8 {

    border-top-left-radius: .8rem !important;

    border-bottom-left-radius: .8rem !important;
}

.rounded-t-xl {

    border-top-left-radius: 1.2rem;

    border-top-right-radius: 1.2rem;
}

.rounded-b-0 {

    border-bottom-right-radius: 0px;

    border-bottom-left-radius: 0px;
}

.rounded-t-16 {

    border-top-left-radius: 1.6rem;

    border-top-right-radius: 1.6rem;
}

.rounded-r-3xl {

    border-top-right-radius: 2.4rem;

    border-bottom-right-radius: 2.4rem;
}

.\!rounded-r-none {

    border-top-right-radius: 0px !important;

    border-bottom-right-radius: 0px !important;
}

.\!rounded-l-none {

    border-top-left-radius: 0px !important;

    border-bottom-left-radius: 0px !important;
}

.\!rounded-b-0 {

    border-bottom-right-radius: 0px !important;

    border-bottom-left-radius: 0px !important;
}

.\!rounded-tl-12 {

    border-top-left-radius: 1.2rem !important;
}

.\!rounded-tr-0 {

    border-top-right-radius: 0px !important;
}

.border-1 {

    border-width: 1px;
}

.border {

    border-width: 1px;
}

.border-4 {

    border-width: 4px;
}

.\!border-1 {

    border-width: 1px !important;
}

.border-0 {

    border-width: 0px;
}

.border-3 {

    border-width: 3px;
}

.border-2 {

    border-width: 2px;
}

.\!border-y-1 {

    border-top-width: 1px !important;

    border-bottom-width: 1px !important;
}

.border-b-0 {

    border-bottom-width: 0px;
}

.border-b-1 {

    border-bottom-width: 1px;
}

.\!border-b-1 {

    border-bottom-width: 1px !important;
}

.\!border-r-1 {

    border-right-width: 1px !important;
}

.border-b {

    border-bottom-width: 1px;
}

.border-t {

    border-top-width: 1px;
}

.\!border-t-1 {

    border-top-width: 1px !important;
}

.border-l {

    border-left-width: 1px;
}

.\!border-b-0 {

    border-bottom-width: 0px !important;
}

.border-solid {

    border-style: solid;
}

.border-dashed {

    border-style: dashed;
}

.border-none {

    border-style: none;
}

.border-\[rgba\(0\2c 0\2c 0\2c 0\.23\)\] {

    border-color: rgba(0,0,0,0.23);
}

.border-\[rgba\(255\2c 255\2c 255\2c 0\.23\)\] {

    border-color: rgba(255,255,255,0.23);
}

.bg-white {

    --tw-bg-opacity: 1;

    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-\[\#FF0000\] {

    --tw-bg-opacity: 1;

    background-color: rgb(255 0 0 / var(--tw-bg-opacity));
}

.\!bg-transparent {

    background-color: transparent !important;
}

.bg-red-800 {

    --tw-bg-opacity: 1;

    background-color: rgb(198 40 40 / var(--tw-bg-opacity));
}

.bg-grey-900 {

    --tw-bg-opacity: 1;

    background-color: rgb(33 33 33 / var(--tw-bg-opacity));
}

.bg-gray-100 {

    --tw-bg-opacity: 1;

    background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}

.bg-red-500 {

    --tw-bg-opacity: 1;

    background-color: rgb(244 67 54 / var(--tw-bg-opacity));
}

.fill-current {

    fill: currentColor;
}

.object-contain {

    object-fit: contain;
}

.\!object-contain {

    object-fit: contain !important;
}

.object-cover {

    object-fit: cover;
}

.\!object-cover {

    object-fit: cover !important;
}

.object-center {

    object-position: center;
}

.p-64 {

    padding: 6.4rem;
}

.p-12 {

    padding: 1.2rem;
}

.p-10 {

    padding: 1.0rem;
}

.p-24 {

    padding: 2.4rem;
}

.p-0 {

    padding: 0px;
}

.p-16 {

    padding: 1.6rem;
}

.p-32 {

    padding: 3.2rem;
}

.p-2 {

    padding: 0.2rem;
}

.p-40 {

    padding: 4rem;
}

.p-4 {

    padding: 0.4rem;
}

.\!p-0 {

    padding: 0px !important;
}

.p-72 {

    padding: 7.2rem;
}

.p-20 {

    padding: 2rem;
}

.\!p-208 {

    padding: 20.8rem !important;
}

.p-208 {

    padding: 20.8rem;
}

.p-3 {

    padding: 0.3rem;
}

.p-5 {

    padding: 0.5rem;
}

.p-8 {

    padding: 0.8rem;
}

.p-\[10px\] {

    padding: 10px;
}

.\!p-72 {

    padding: 7.2rem !important;
}

.p-48 {

    padding: 4.8rem;
}

.\!p-2 {

    padding: 0.2rem !important;
}

.\!p-8 {

    padding: 0.8rem !important;
}

.px-16 {

    padding-left: 1.6rem;

    padding-right: 1.6rem;
}

.py-12 {

    padding-top: 1.2rem;

    padding-bottom: 1.2rem;
}

.py-8 {

    padding-top: 0.8rem;

    padding-bottom: 0.8rem;
}

.px-10 {

    padding-left: 1.0rem;

    padding-right: 1.0rem;
}

.py-24 {

    padding-top: 2.4rem;

    padding-bottom: 2.4rem;
}

.px-24 {

    padding-left: 2.4rem;

    padding-right: 2.4rem;
}

.px-4 {

    padding-left: 0.4rem;

    padding-right: 0.4rem;
}

.px-3 {

    padding-left: 0.3rem;

    padding-right: 0.3rem;
}

.px-12 {

    padding-left: 1.2rem;

    padding-right: 1.2rem;
}

.px-32 {

    padding-left: 3.2rem;

    padding-right: 3.2rem;
}

.py-40 {

    padding-top: 4rem;

    padding-bottom: 4rem;
}

.py-16 {

    padding-top: 1.6rem;

    padding-bottom: 1.6rem;
}

.px-20 {

    padding-left: 2rem;

    padding-right: 2rem;
}

.px-14 {

    padding-left: 1.4rem;

    padding-right: 1.4rem;
}

.py-20 {

    padding-top: 2rem;

    padding-bottom: 2rem;
}

.px-5 {

    padding-left: 0.5rem;

    padding-right: 0.5rem;
}

.py-3 {

    padding-top: 0.3rem;

    padding-bottom: 0.3rem;
}

.px-0 {

    padding-left: 0px;

    padding-right: 0px;
}

.py-0 {

    padding-top: 0px;

    padding-bottom: 0px;
}

.py-4 {

    padding-top: 0.4rem;

    padding-bottom: 0.4rem;
}

.px-8 {

    padding-left: 0.8rem;

    padding-right: 0.8rem;
}

.px-2 {

    padding-left: 0.2rem;

    padding-right: 0.2rem;
}

.py-2 {

    padding-top: 0.2rem;

    padding-bottom: 0.2rem;
}

.\!px-5 {

    padding-left: 0.5rem !important;

    padding-right: 0.5rem !important;
}

.px-6 {

    padding-left: 0.6rem;

    padding-right: 0.6rem;
}

.py-10 {

    padding-top: 1.0rem;

    padding-bottom: 1.0rem;
}

.py-5 {

    padding-top: 0.5rem;

    padding-bottom: 0.5rem;
}

.py-1 {

    padding-top: 0.1rem;

    padding-bottom: 0.1rem;
}

.py-48 {

    padding-top: 4.8rem;

    padding-bottom: 4.8rem;
}

.py-64 {

    padding-top: 6.4rem;

    padding-bottom: 6.4rem;
}

.py-6 {

    padding-top: 0.6rem;

    padding-bottom: 0.6rem;
}

.px-40 {

    padding-left: 4rem;

    padding-right: 4rem;
}

.\!py-8 {

    padding-top: 0.8rem !important;

    padding-bottom: 0.8rem !important;
}

.\!px-12 {

    padding-left: 1.2rem !important;

    padding-right: 1.2rem !important;
}

.py-32 {

    padding-top: 3.2rem;

    padding-bottom: 3.2rem;
}

.\!px-0 {

    padding-left: 0px !important;

    padding-right: 0px !important;
}

.\!py-0 {

    padding-top: 0px !important;

    padding-bottom: 0px !important;
}

.py-14 {

    padding-top: 1.4rem;

    padding-bottom: 1.4rem;
}

.\!px-8 {

    padding-left: 0.8rem !important;

    padding-right: 0.8rem !important;
}

.\!py-5 {

    padding-top: 0.5rem !important;

    padding-bottom: 0.5rem !important;
}

.px-7 {

    padding-left: 0.7rem;

    padding-right: 0.7rem;
}

.\!px-4 {

    padding-left: 0.4rem !important;

    padding-right: 0.4rem !important;
}

.\!py-2 {

    padding-top: 0.2rem !important;

    padding-bottom: 0.2rem !important;
}

.py-7 {

    padding-top: 0.7rem;

    padding-bottom: 0.7rem;
}

.py-px {

    padding-top: 1px;

    padding-bottom: 1px;
}

.pl-24 {

    padding-left: 2.4rem;
}

.pl-40 {

    padding-left: 4rem;
}

.pl-56 {

    padding-left: 5.6rem;
}

.pl-72 {

    padding-left: 7.2rem;
}

.pl-80 {

    padding-left: 8rem;
}

.pt-32 {

    padding-top: 3.2rem;
}

.pb-24 {

    padding-bottom: 2.4rem;
}

.pt-5 {

    padding-top: 0.5rem;
}

.pt-12 {

    padding-top: 1.2rem;
}

.pb-28 {

    padding-bottom: 2.8rem;
}

.pb-10 {

    padding-bottom: 1.0rem;
}

.pb-12 {

    padding-bottom: 1.2rem;
}

.\!pb-12 {

    padding-bottom: 1.2rem !important;
}

.pt-0 {

    padding-top: 0px;
}

.pb-14 {

    padding-bottom: 1.4rem;
}

.pr-10 {

    padding-right: 1.0rem;
}

.pl-10 {

    padding-left: 1.0rem;
}

.pl-8 {

    padding-left: 0.8rem;
}

.pb-16 {

    padding-bottom: 1.6rem;
}

.pt-8 {

    padding-top: 0.8rem;
}

.pb-8 {

    padding-bottom: 0.8rem;
}

.pt-16 {

    padding-top: 1.6rem;
}

.pr-28 {

    padding-right: 2.8rem;
}

.pb-3 {

    padding-bottom: 0.3rem;
}

.pt-10 {

    padding-top: 1.0rem;
}

.pb-4 {

    padding-bottom: 0.4rem;
}

.pb-32 {

    padding-bottom: 3.2rem;
}

.pt-20 {

    padding-top: 2rem;
}

.pt-48 {

    padding-top: 4.8rem;
}

.pr-14 {

    padding-right: 1.4rem;
}

.pl-\[5px\] {

    padding-left: 5px;
}

.pr-16 {

    padding-right: 1.6rem;
}

.pl-4 {

    padding-left: 0.4rem;
}

.pt-14 {

    padding-top: 1.4rem;
}

.pb-20 {

    padding-bottom: 2rem;
}

.pl-20 {

    padding-left: 2rem;
}

.pl-16 {

    padding-left: 1.6rem;
}

.pr-12 {

    padding-right: 1.2rem;
}

.pr-5 {

    padding-right: 0.5rem;
}

.pr-6 {

    padding-right: 0.6rem;
}

.pl-\[var\(--spacing\)\] {

    padding-left: var(--spacing);
}

.\!pl-\[10px\] {

    padding-left: 10px !important;
}

.pt-\[5px\] {

    padding-top: 5px;
}

.pt-24 {

    padding-top: 2.4rem;
}

.pt-6 {

    padding-top: 0.6rem;
}

.pb-6 {

    padding-bottom: 0.6rem;
}

.pt-4 {

    padding-top: 0.4rem;
}

.pl-2 {

    padding-left: 0.2rem;
}

.pr-20 {

    padding-right: 2rem;
}

.\!pl-0 {

    padding-left: 0px !important;
}

.\!pr-0 {

    padding-right: 0px !important;
}

.pr-2 {

    padding-right: 0.2rem;
}

.pb-5 {

    padding-bottom: 0.5rem;
}

.pl-5 {

    padding-left: 0.5rem;
}

.pr-8 {

    padding-right: 0.8rem;
}

.pb-0 {

    padding-bottom: 0px;
}

.\!pl-32 {

    padding-left: 3.2rem !important;
}

.pl-12 {

    padding-left: 1.2rem;
}

.pt-\[6px\] {

    padding-top: 6px;
}

.pl-\[16px\] {

    padding-left: 16px;
}

.pb-48 {

    padding-bottom: 4.8rem;
}

.\!pb-28 {

    padding-bottom: 2.8rem !important;
}

.text-left {

    text-align: left;
}

.text-center {

    text-align: center;
}

.text-right {

    text-align: right;
}

.text-justify {

    text-align: justify;
}

.align-middle {

    vertical-align: middle;
}

.font-\[\'Poppins\'\] {

    font-family: 'Poppins';
}

.font-mono {

    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-7xl {

    font-size: 4.8rem;
}

.text-12 {

    font-size: 1.2rem;
}

.text-13 {

    font-size: 1.3rem;
}

.text-xl {

    font-size: 1.8rem;
}

.text-base {

    font-size: 1.4rem;
}

.text-10 {

    font-size: 1rem;
}

.text-2xl {

    font-size: 2rem;
}

.text-lg {

    font-size: 1.6rem;
}

.text-4xl {

    font-size: 3.2rem;
}

.text-20 {

    font-size: 2rem;
}

.text-48 {

    font-size: 4.8rem;
}

.text-\[12px\] {

    font-size: 12px;
}

.text-15 {

    font-size: 1.5rem;
}

.text-14 {

    font-size: 1.4rem;
}

.text-11 {

    font-size: 1.1rem;
}

.text-3xl {

    font-size: 2.4rem;
}

.text-64 {

    font-size: 6.4rem;
}

.text-16 {

    font-size: 1.6rem;
}

.text-32 {

    font-size: 3.2rem;
}

.text-md {

    font-size: 1.3rem;
}

.\!text-10 {

    font-size: 1rem !important;
}

.text-\[9px\] {

    font-size: 9px;
}

.text-sm {

    font-size: 1.2rem;
}

.text-24 {

    font-size: 2.4rem;
}

.\!text-\[10px\] {

    font-size: 10px !important;
}

.\!text-12 {

    font-size: 1.2rem !important;
}

.text-5xl {

    font-size: 3.6rem;
}

.text-xs {

    font-size: 1rem;
}

.text-\[10px\] {

    font-size: 10px;
}

.text-\[1rem\] {

    font-size: 1rem;
}

.text-18 {

    font-size: 1.8rem;
}

.font-bold {

    font-weight: 700;
}

.font-semibold {

    font-weight: 600;
}

.font-medium {

    font-weight: 500;
}

.font-extrabold {

    font-weight: 800;
}

.font-200 {

    font-weight: 200;
}

.font-600 {

    font-weight: 600;
}

.\!font-medium {

    font-weight: 500 !important;
}

.\!font-bold {

    font-weight: 700 !important;
}

.font-500 {

    font-weight: 500;
}

.\!font-semibold {

    font-weight: 600 !important;
}

.font-light {

    font-weight: 300;
}

.font-700 {

    font-weight: 700;
}

.font-400 {

    font-weight: 400;
}

.uppercase {

    text-transform: uppercase;
}

.lowercase {

    text-transform: lowercase;
}

.capitalize {

    text-transform: capitalize;
}

.normal-case {

    text-transform: none;
}

.italic {

    font-style: italic;
}

.tabular-nums {

    --tw-numeric-spacing: tabular-nums;

    font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);

    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.leading-none {

    line-height: 1;
}

.leading-6 {

    line-height: 2.4rem;
}

.leading-tight {

    line-height: 1.25;
}

.leading-7 {

    line-height: 2.8rem;
}

.leading-10 {

    line-height: 4rem;
}

.leading-4 {

    line-height: 1.6rem;
}

.leading-3 {

    line-height: 1.2rem;
}

.leading-normal {

    line-height: 1.5;
}

.leading-snug {

    line-height: 1.375;
}

.leading-5 {

    line-height: 2rem;
}

.tracking-tight {

    letter-spacing: -0.025em;
}

.tracking-wide {

    letter-spacing: 0.025em;
}

.tracking-wider {

    letter-spacing: 0.05em;
}

.tracking-widest {

    letter-spacing: 0.1em;
}

.tracking-\[\.05em\] {

    letter-spacing: .05em;
}

.text-gray-100 {

    --tw-text-opacity: 1;

    color: rgb(245 245 245 / var(--tw-text-opacity));
}

.text-gray-400 {

    --tw-text-opacity: 1;

    color: rgb(189 189 189 / var(--tw-text-opacity));
}

.text-white {

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-grey-700 {

    --tw-text-opacity: 1;

    color: rgb(97 97 97 / var(--tw-text-opacity));
}

.text-inherit {

    color: inherit;
}

.\!text-white {

    --tw-text-opacity: 1 !important;

    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.\!text-inherit {

    color: inherit !important;
}

.text-green-500 {

    --tw-text-opacity: 1;

    color: rgb(76 175 80 / var(--tw-text-opacity));
}

.text-yellow-500 {

    --tw-text-opacity: 1;

    color: rgb(255 235 59 / var(--tw-text-opacity));
}

.underline {

    -webkit-text-decoration-line: underline;

            text-decoration-line: underline;
}

.overline {

    -webkit-text-decoration-line: overline;

            text-decoration-line: overline;
}

.line-through {

    -webkit-text-decoration-line: line-through;

            text-decoration-line: line-through;
}

.\!no-underline {

    -webkit-text-decoration-line: none !important;

            text-decoration-line: none !important;
}

.no-underline {

    -webkit-text-decoration-line: none;

            text-decoration-line: none;
}

.opacity-20 {

    opacity: 0.2;
}

.opacity-30 {

    opacity: 0.3;
}

.\!opacity-30 {

    opacity: 0.3 !important;
}

.opacity-80 {

    opacity: 0.8;
}

.\!opacity-0 {

    opacity: 0 !important;
}

.opacity-75 {

    opacity: 0.75;
}

.opacity-100 {

    opacity: 1;
}

.opacity-70 {

    opacity: 0.7;
}

.opacity-60 {

    opacity: 0.6;
}

.opacity-0 {

    opacity: 0;
}

.opacity-10 {

    opacity: 0.1;
}

.opacity-50 {

    opacity: 0.5;
}

.opacity-90 {

    opacity: 0.9;
}

.opacity-40 {

    opacity: 0.4;
}

.shadow-lg {

    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {

    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -1px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-0 {

    --tw-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);

    --tw-shadow-colored: 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow {

    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);

    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {

    --tw-shadow: 0 0 #0000;

    --tw-shadow-colored: 0 0 #0000;

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.\!shadow-0 {

    --tw-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) !important;

    --tw-shadow-colored: 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color) !important;

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow) !important;

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow-1 {

    --tw-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);

    --tw-shadow-colored: 0px 2px 1px -1px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 1px 3px 0px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-5 {

    --tw-shadow: 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);

    --tw-shadow-colored: 0px 3px 5px -1px var(--tw-shadow-color), 0px 5px 8px 0px var(--tw-shadow-color), 0px 1px 14px 0px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.\!shadow-2 {

    --tw-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) !important;

    --tw-shadow-colored: 0px 3px 1px -2px var(--tw-shadow-color), 0px 2px 2px 0px var(--tw-shadow-color), 0px 1px 5px 0px var(--tw-shadow-color) !important;

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow) !important;

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow-sm {

    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0px_15px_15px_0_rgba\(34\2c 33\2c 81\2c 0\.1\)\] {

    --tw-shadow: 0px 15px 15px 0 rgba(34,33,81,0.1);

    --tw-shadow-colored: 0px 15px 15px 0 var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline {

    outline-style: solid;
}

.ring {

    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);

    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);

    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;

    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.blur {

    --tw-blur: blur(8px);

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow {

    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {

    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.transition-shadow {

    transition-property: box-shadow;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.transition-opacity {

    transition-property: opacity;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.transition-transform {

    transition-property: transform;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.transition-all {

    transition-property: all;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.transition-colors {

    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms;
}

.duration-\[250ms\] {

    transition-duration: 250ms;
}

.duration-300 {

    transition-duration: 300ms;
}

.ease-in-out {

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out {

    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-linear {

    transition-timing-function: linear;
}

.icon-size-96 {

    width: 9.6rem;

    height: 9.6rem;

    min-width: 9.6rem;

    min-height: 9.6rem;

    font-size: 9.6rem;

    line-height: 9.6rem;
}

.icon-size-96 svg {

    width: 9.6rem;

    height: 9.6rem;
}

.icon-size-128 {

    width: 12.8rem;

    height: 12.8rem;

    min-width: 12.8rem;

    min-height: 12.8rem;

    font-size: 12.8rem;

    line-height: 12.8rem;
}

.icon-size-128 svg {

    width: 12.8rem;

    height: 12.8rem;
}

.line-clamp-3 {

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;
}

.line-clamp-2 {

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;
}

.before\:absolute::before {

    content: var(--tw-content);

    position: absolute;
}

.before\:left-5::before {

    content: var(--tw-content);

    left: 0.5rem;
}

.before\:top-5::before {

    content: var(--tw-content);

    top: 0.5rem;
}

.before\:bottom-5::before {

    content: var(--tw-content);

    bottom: 0.5rem;
}

.before\:top-\[24px\]::before {

    content: var(--tw-content);

    top: 24px;
}

.before\:h-\[8px\]::before {

    content: var(--tw-content);

    height: 8px;
}

.before\:w-\[8px\]::before {

    content: var(--tw-content);

    width: 8px;
}

.before\:w-20::before {

    content: var(--tw-content);

    width: 2rem;
}

.before\:shrink-0::before {

    content: var(--tw-content);

    flex-shrink: 0;
}

.before\:-translate-y-1\/2::before {

    content: var(--tw-content);

    --tw-translate-y: -50%;

    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:rounded-full::before {

    content: var(--tw-content);

    border-radius: 9999px;
}

.before\:border-l-2::before {

    content: var(--tw-content);

    border-left-width: 2px;
}

.before\:border-t-2::before {

    content: var(--tw-content);

    border-top-width: 2px;
}

.before\:border-dashed::before {

    content: var(--tw-content);

    border-style: dashed;
}

.before\:content-\[\'\'\]::before {

    --tw-content: '';

    content: var(--tw-content);
}

.first\:mt-0:first-child {

    margin-top: 0px;
}

.hover\:cursor-pointer:hover {

    cursor: pointer;
}

.hover\:bg-transparent:hover {

    background-color: transparent;
}

.hover\:underline:hover {

    -webkit-text-decoration-line: underline;

            text-decoration-line: underline;
}

.hover\:no-underline:hover {

    -webkit-text-decoration-line: none;

            text-decoration-line: none;
}

.hover\:opacity-60:hover {

    opacity: 0.6;
}

.hover\:opacity-40:hover {

    opacity: 0.4;
}

.hover\:opacity-100:hover {

    opacity: 1;
}

.hover\:opacity-80:hover {

    opacity: 0.8;
}

.hover\:shadow-md:hover {

    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -1px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {

    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-none:focus {

    border-style: none;
}

.focus\:bg-transparent:focus {

    background-color: transparent;
}

.focus\:outline-none:focus {

    outline: 2px solid transparent;

    outline-offset: 2px;
}

.active\:cursor-grabbing:active {

    cursor: grabbing;
}

.group:hover .group-hover\:border-black {

    --tw-border-opacity: 1;

    border-color: rgb(34 41 47 / var(--tw-border-opacity));
}

.group:hover .group-hover\:border-white {

    --tw-border-opacity: 1;

    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.group:hover .group-hover\:opacity-100 {

    opacity: 1;
}

.group:hover .group-hover\:opacity-75 {

    opacity: 0.75;
}

.group:hover .group-hover\:shadow-lg {

    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -2px var(--tw-shadow-color);

    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

[dir="ltr"] .ltr\:right-0 {

    right: 0px;
}

[dir="ltr"] .ltr\:ml-4 {

    margin-left: 0.4rem;
}

[dir="ltr"] .ltr\:ml-8 {

    margin-left: 0.8rem;
}

[dir="ltr"] .ltr\:border-r-1 {

    border-right-width: 1px;
}

[dir="ltr"] .ltr\:pr-48 {

    padding-right: 4.8rem;
}

[dir="rtl"] .rtl\:left-0 {

    left: 0px;
}

[dir="rtl"] .rtl\:mr-4 {

    margin-right: 0.4rem;
}

[dir="rtl"] .rtl\:mr-8 {

    margin-right: 0.8rem;
}

[dir="rtl"] .rtl\:border-l-1 {

    border-left-width: 1px;
}

[dir="rtl"] .rtl\:pl-48 {

    padding-left: 4.8rem;
}

@media (min-width: 350px) {

    .xs\:h-\[30px\] {

        height: 30px;
    }

    .xs\:w-\[30px\] {

        width: 30px;
    }

    .xs\:w-full {

        width: 100%;
    }

    .xs\:flex-row {

        flex-direction: row;
    }

    .xs\:justify-between {

        justify-content: space-between;
    }

    .xs\:text-sm {

        font-size: 1.2rem;
    }
}

@media (min-width: 600px) {

    .sm\:my-40 {

        margin-top: 4rem;

        margin-bottom: 4rem;
    }

    .sm\:mx-0 {

        margin-left: 0px;

        margin-right: 0px;
    }

    .sm\:mx-8 {

        margin-left: 0.8rem;

        margin-right: 0.8rem;
    }

    .sm\:ml-12 {

        margin-left: 1.2rem;
    }

    .sm\:flex {

        display: flex;
    }

    .sm\:h-auto {

        height: auto;
    }

    .sm\:h-\[60\%\] {

        height: 60%;
    }

    .sm\:h-\[40\%\] {

        height: 40%;
    }

    .sm\:min-h-auto {

        min-height: auto;
    }

    .sm\:min-h-0 {

        min-height: 0px;
    }

    .sm\:w-auto {

        width: auto;
    }

    .sm\:w-320 {

        width: 32rem;
    }

    .sm\:w-\[70\%\] {

        width: 70%;
    }

    .sm\:w-\[30\%\] {

        width: 30%;
    }

    .sm\:max-w-288 {

        max-width: 28.8rem;
    }

    .sm\:\!max-w-\[70\%\] {

        max-width: 70% !important;
    }

    .sm\:flex-initial {

        flex: 0 1 auto;
    }

    .sm\:grid-cols-2 {

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:flex-row {

        flex-direction: row;
    }

    .sm\:items-start {

        align-items: flex-start;
    }

    .sm\:justify-center {

        justify-content: center;
    }

    .sm\:justify-between {

        justify-content: space-between;
    }

    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-y-reverse: 0;

        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));

        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }

    .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(1.2rem * var(--tw-space-x-reverse));

        margin-left: calc(1.2rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(1.0rem * var(--tw-space-x-reverse));

        margin-left: calc(1.0rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .sm\:rounded-2xl {

        border-radius: 1.6rem;
    }

    .sm\:p-48 {

        padding: 4.8rem;
    }

    .sm\:p-32 {

        padding: 3.2rem;
    }

    .sm\:px-48 {

        padding-left: 4.8rem;

        padding-right: 4.8rem;
    }

    .sm\:px-32 {

        padding-left: 3.2rem;

        padding-right: 3.2rem;
    }

    .sm\:py-20 {

        padding-top: 2rem;

        padding-bottom: 2rem;
    }

    .sm\:px-40 {

        padding-left: 4rem;

        padding-right: 4rem;
    }

    .sm\:px-20 {

        padding-left: 2rem;

        padding-right: 2rem;
    }

    .sm\:px-24 {

        padding-left: 2.4rem;

        padding-right: 2.4rem;
    }

    .sm\:px-12 {

        padding-left: 1.2rem;

        padding-right: 1.2rem;
    }

    .sm\:pt-0 {

        padding-top: 0px;
    }

    .sm\:pr-48 {

        padding-right: 4.8rem;
    }

    .sm\:pl-36 {

        padding-left: 3.6rem;
    }

    .sm\:pl-48 {

        padding-left: 4.8rem;
    }

    .sm\:text-16 {

        font-size: 1.6rem;
    }

    .sm\:text-8xl {

        font-size: 6.4rem;
    }

    .sm\:text-lg {

        font-size: 1.6rem;
    }

    .sm\:text-sm {

        font-size: 1.2rem;
    }

    .sm\:text-5xl {

        font-size: 3.6rem;
    }

    .sm\:text-base {

        font-size: 1.4rem;
    }

    .sm\:leading-10 {

        line-height: 4rem;
    }

    .sm\:shadow {

        --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);

        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);

        box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}

@media (min-width: 960px) {

    .md\:mx-4 {

        margin-left: 0.4rem;

        margin-right: 0.4rem;
    }

    .md\:mx-20 {

        margin-left: 2rem;

        margin-right: 2rem;
    }

    .md\:mt-0 {

        margin-top: 0px;
    }

    .md\:ml-10 {

        margin-left: 1.0rem;
    }

    .md\:ml-16 {

        margin-left: 1.6rem;
    }

    .md\:ml-20 {

        margin-left: 2rem;
    }

    .md\:flex {

        display: flex;
    }

    .md\:hidden {

        display: none;
    }

    .md\:h-\[40px\] {

        height: 40px;
    }

    .md\:h-48 {

        height: 4.8rem;
    }

    .md\:h-64 {

        height: 6.4rem;
    }

    .md\:h-full {

        height: 100%;
    }

    .md\:h-72 {

        height: 7.2rem;
    }

    .md\:\!h-full {

        height: 100% !important;
    }

    .md\:h-76 {

        height: 7.6rem;
    }

    .md\:max-h-fit {

        max-height: -webkit-fit-content;

        max-height: fit-content;
    }

    .md\:min-h-64 {

        min-height: 6.4rem;
    }

    .md\:w-\[40px\] {

        width: 40px;
    }

    .md\:w-1\/2 {

        width: 50%;
    }

    .md\:w-2\/3 {

        width: 66.666667%;
    }

    .md\:w-1\/3 {

        width: 33.333333%;
    }

    .md\:w-\[65\%\] {

        width: 65%;
    }

    .md\:max-w-480 {

        max-width: 48rem;
    }

    .md\:\!max-w-\[60\%\] {

        max-width: 60% !important;
    }

    .md\:flex-auto {

        flex: 1 1 auto;
    }

    .md\:flex-shrink-0 {

        flex-shrink: 0;
    }

    .md\:grid-cols-3 {

        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:flex-row {

        flex-direction: row;
    }

    .md\:flex-nowrap {

        flex-wrap: nowrap;
    }

    .md\:items-start {

        align-items: flex-start;
    }

    .md\:items-center {

        align-items: center;
    }

    .md\:justify-start {

        justify-content: flex-start;
    }

    .md\:justify-end {

        justify-content: flex-end;
    }

    .md\:gap-16 {

        gap: 1.6rem;
    }

    .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(4rem * var(--tw-space-x-reverse));

        margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-y-reverse: 0;

        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));

        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }

    .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(1.0rem * var(--tw-space-x-reverse));

        margin-left: calc(1.0rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(2.4rem * var(--tw-space-x-reverse));

        margin-left: calc(2.4rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(2rem * var(--tw-space-x-reverse));

        margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) {

        --tw-space-x-reverse: 0;

        margin-right: calc(0.5rem * var(--tw-space-x-reverse));

        margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
    }

    .md\:divide-x-1 > :not([hidden]) ~ :not([hidden]) {

        --tw-divide-x-reverse: 0;

        border-right-width: calc(1px * var(--tw-divide-x-reverse));

        border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
    }

    .md\:overflow-hidden {

        overflow: hidden;
    }

    .md\:overflow-y-auto {

        overflow-y: auto;
    }

    .md\:rounded-none {

        border-radius: 0px;
    }

    .md\:p-64 {

        padding: 6.4rem;
    }

    .md\:p-10 {

        padding: 1.0rem;
    }

    .md\:px-20 {

        padding-left: 2rem;

        padding-right: 2rem;
    }

    .md\:px-16 {

        padding-left: 1.6rem;

        padding-right: 1.6rem;
    }

    .md\:py-6 {

        padding-top: 0.6rem;

        padding-bottom: 0.6rem;
    }

    .md\:px-32 {

        padding-left: 3.2rem;

        padding-right: 3.2rem;
    }

    .md\:px-0 {

        padding-left: 0px;

        padding-right: 0px;
    }

    .md\:px-24 {

        padding-left: 2.4rem;

        padding-right: 2.4rem;
    }

    .md\:px-68 {

        padding-left: 6.8rem;

        padding-right: 6.8rem;
    }

    .md\:pb-0 {

        padding-bottom: 0px;
    }

    .md\:text-7xl {

        font-size: 4.8rem;
    }

    .md\:text-xl {

        font-size: 1.8rem;
    }

    .md\:text-4xl {

        font-size: 3.2rem;
    }

    .md\:text-base {

        font-size: 1.4rem;
    }

    .md\:text-2xl {

        font-size: 2rem;
    }

    .md\:leading-none {

        line-height: 1;
    }

    .md\:leading-snug {

        line-height: 1.375;
    }

    .md\:shadow-none {

        --tw-shadow: 0 0 #0000;

        --tw-shadow-colored: 0 0 #0000;

        box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }

    .group:hover .md\:group-hover\:flex {

        display: flex;
    }
}

@media (min-width: 1280px) {

    .lg\:mx-24 {

        margin-left: 2.4rem;

        margin-right: 2.4rem;
    }

    .lg\:mr-8 {

        margin-right: 0.8rem;
    }

    .lg\:flex {

        display: flex;
    }

    .lg\:hidden {

        display: none;
    }

    .lg\:\!max-w-\[50\%\] {

        max-width: 50% !important;
    }

    .lg\:grid-cols-4 {

        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:px-112 {

        padding-left: 11.2rem;

        padding-right: 11.2rem;
    }

    .lg\:px-24 {

        padding-left: 2.4rem;

        padding-right: 2.4rem;
    }

    .lg\:px-20 {

        padding-left: 2rem;

        padding-right: 2rem;
    }
}

@media (min-width: 1920px) {

    .xl\:col-span-2 {

        grid-column: span 2 / span 2;
    }

    .xl\:grid-cols-4 {

        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xl\:grid-cols-5 {

        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/*
  Theme variables (--ck-custom-background, --ck-custom-foreground, --ck-custom-hover,
  --ck-custom-border, --ck-color-base-border, --ck-text-color) are set on :root
  by CmkTheme.js. We only define CKEditor-specific variables here that reference them.
*/
.CmkEditorField_richTextContainer__jPHAs,
.CmkEditorField_richTextContainer__jPHAs * {
  /* Overrides the border radius setting in the theme. */
  --ck-border-radius: 4px;

  /* Overrides the default font size in the theme. */
  --ck-font-size-base: 14px;

  --ck-custom-white: hsl(0, 0%, 100%);
  --ck-color-text: var(--ck-text-color);

  --ck-position-background: relative;

  --ck-balloon-rotator-zindex: 99999999 !important;

  /* -- Overrides generic colors. ------------------------------------------------------------- */

  --ck-color-base-background: var(--ck-custom-background);
  --ck-color-base-foreground: var(--ck-custom-background);
  --ck-color-focus-border: hsl(210, 100%, 50%, 1);
  --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
  --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);

  /* -- Overrides the default .ck-button class colors. ---------------------------------------- */

  --ck-color-button-default-background: var(--ck-custom-background);
  --ck-color-button-default-hover-background: var(--ck-custom-hover);
  --ck-color-button-default-active-background: var(--ck-custom-foreground);
  --ck-color-button-default-active-shadow: var(--ck-custom-foreground);
  --ck-color-button-default-disabled-background: var(--ck-custom-background);

  --ck-color-button-on-background: var(--ck-custom-foreground);
  --ck-color-button-on-hover-background: var(--ck-custom-hover);
  --ck-color-button-on-active-background: var(--ck-custom-foreground);
  --ck-color-button-on-active-shadow: var(--ck-custom-foreground);
  --ck-color-button-on-disabled-background: var(--ck-custom-foreground);

  --ck-color-button-action-background: hsl(168, 76%, 42%);
  --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
  --ck-color-button-action-active-background: hsl(168, 76%, 36%);
  --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
  --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
  --ck-color-button-action-text: var(--ck-custom-white);

  --ck-color-button-save: hsl(120, 100%, 46%);
  --ck-color-button-cancel: hsl(15, 100%, 56%);

  /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */

  --ck-color-dropdown-panel-background: var(--ck-custom-background);
  --ck-color-dropdown-panel-border: var(--ck-custom-foreground);

  /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */

  --ck-color-split-button-hover-background: var(
    --ck-color-button-default-hover-background
  );
  --ck-color-split-button-hover-border: var(--ck-custom-foreground);

  /* -- Overrides the default .ck-input class colors. ----------------------------------------- */

  --ck-color-input-background: var(--ck-custom-background);
  --ck-color-input-border: hsl(257, 3%, 43%);
  --ck-color-input-text: hsl(0, 0%, 98%);
  --ck-color-input-disabled-background: hsl(255, 4%, 21%);
  --ck-color-input-disabled-border: hsl(250, 3%, 38%);
  --ck-color-input-disabled-text: hsl(0, 0%, 78%);

  /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */

  --ck-color-labeled-field-label-background: var(--ck-custom-background);

  /* -- Overrides the default .ck-list class colors. ------------------------------------------ */

  --ck-color-list-background: var(--ck-custom-background);
  --ck-color-list-button-hover-background: var(--ck-color-base-foreground);
  --ck-color-list-button-on-background: var(--ck-color-base-active);
  --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
  --ck-color-list-button-on-text: var(--ck-color-base-background);

  /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */

  --ck-color-panel-background: var(--ck-custom-background);
  --ck-color-panel-border: var(--ck-custom-border);

  /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */

  --ck-color-toolbar-background: var(--ck-custom-background);
  --ck-color-toolbar-border: var(--ck-custom-border);

  /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */

  --ck-color-tooltip-background: hsl(252, 7%, 14%);
  --ck-color-tooltip-text: hsl(0, 0%, 93%);

  /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */

  --ck-color-image-caption-background: hsl(0, 0%, 97%);
  --ck-color-image-caption-text: hsl(0, 0%, 20%);

  /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */

  --ck-color-widget-blurred-border: hsl(0, 0%, 87%);
  --ck-color-widget-hover-border: hsl(43, 100%, 68%);
  --ck-color-widget-editable-focus-background: var(--ck-custom-white);

  /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */

  --ck-color-link-default: hsl(190, 100%, 75%);
}

.CmkEditorField_richTextContainer__jPHAs .ck-content {
  font-family: "Poppins";
  line-height: 1.6;
  word-break: break-word;
}

.CmkEditorField_richTextContainer__jPHAs .ck .ck-powered-by {
  visibility: hidden;
}

.CmkEditorField_richTextContainer__jPHAs
  .ck.ck-balloon-panel.ck-balloon-panel_position_border-side_right.ck-balloon-panel_visible.ck-powered-by-balloon {
  visibility: hidden;
}

.CmkEditorField_richTextContainer__jPHAs .ck-editor {
  color: var(--ck-text-color);
}

.CmkEditorField_richTextContainer__jPHAs .ck.ck-editor__editable_inline {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.CmkEditorField_richTextContainer__jPHAs .ck-toolbar {
  color: var(--ck-text-color);
  z-index: var(--ck-balloon-rotator-zindex);
}

.CmkEditorField_richTextContainer__jPHAs .ck-icon {
  color: var(--ck-text-color);
}

.CmkEditorField_richTextContainer__jPHAs .ck-powered-by {
  display: none;
}

.CmkEditorField_richTextContainer__jPHAs
  .ck.ck-dropdown .ck-dropdown__panel.ck-dropdown__panel_sw {
  z-index: 999999999;
}

.CmkEditorField_richTextContainer__jPHAs .ck-source-editing-area textarea {
  position: inherit !important;
  max-height: 450px !important;
  overflow: auto !important;
}

.CmkEditorField_richTextContainer__jPHAs .ck-source-editing-area {
  max-height: 450px !important;
}

.CmkEditorField_richTextContainer__jPHAs .ck .ck-editor__main {
  max-height: 450px !important;
}

.CmkEditorField_richTextContainer__jPHAs .ck .ck-content {
  max-height: 450px !important;
}

.ck .ck-powered-by {
  visibility: hidden;
}

.ck.ck-balloon-panel.ck-balloon-panel_position_border-side_right.ck-balloon-panel_visible.ck-powered-by-balloon {
  visibility: hidden;
}

/*
  CKEditor renders balloons, tooltips, and dropdowns in a portal to .ck-body-wrapper
  which is outside our component. We need to apply the same CKEditor-specific variables there.
  Theme variables are already on :root and will be inherited.
*/
.ck-body-wrapper {
  --ck-border-radius: 4px;
  --ck-font-size-base: 14px;
  --ck-custom-white: hsl(0, 0%, 100%);
  --ck-color-text: var(--ck-text-color);
  --ck-position-background: relative;
  --ck-balloon-rotator-zindex: 99999999 !important;
  --ck-color-base-background: var(--ck-custom-background);
  --ck-color-base-foreground: var(--ck-custom-background);
  --ck-color-focus-border: hsl(210, 100%, 50%, 1);
  --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
  --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);
  --ck-color-button-default-background: var(--ck-custom-background);
  --ck-color-button-default-hover-background: var(--ck-custom-hover);
  --ck-color-button-default-active-background: var(--ck-custom-foreground);
  --ck-color-button-default-active-shadow: var(--ck-custom-foreground);
  --ck-color-button-default-disabled-background: var(--ck-custom-background);
  --ck-color-button-on-background: var(--ck-custom-foreground);
  --ck-color-button-on-hover-background: var(--ck-custom-hover);
  --ck-color-button-on-active-background: var(--ck-custom-foreground);
  --ck-color-button-on-active-shadow: var(--ck-custom-foreground);
  --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
  --ck-color-button-action-background: hsl(168, 76%, 42%);
  --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
  --ck-color-button-action-active-background: hsl(168, 76%, 36%);
  --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
  --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
  --ck-color-button-action-text: var(--ck-custom-white);
  --ck-color-button-save: hsl(120, 100%, 46%);
  --ck-color-button-cancel: hsl(15, 100%, 56%);
  --ck-color-dropdown-panel-background: var(--ck-custom-background);
  --ck-color-dropdown-panel-border: var(--ck-custom-foreground);
  --ck-color-split-button-hover-background: var(
    --ck-color-button-default-hover-background
  );
  --ck-color-split-button-hover-border: var(--ck-custom-foreground);
  --ck-color-input-background: var(--ck-custom-background);
  --ck-color-input-border: hsl(257, 3%, 43%);
  --ck-color-input-text: hsl(0, 0%, 98%);
  --ck-color-input-disabled-background: hsl(255, 4%, 21%);
  --ck-color-input-disabled-border: hsl(250, 3%, 38%);
  --ck-color-input-disabled-text: hsl(0, 0%, 78%);
  --ck-color-labeled-field-label-background: var(--ck-custom-background);
  --ck-color-list-background: var(--ck-custom-background);
  --ck-color-list-button-hover-background: var(--ck-color-base-foreground);
  --ck-color-list-button-on-background: var(--ck-color-base-active);
  --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
  --ck-color-list-button-on-text: var(--ck-color-base-background);
  --ck-color-panel-background: var(--ck-custom-background);
  --ck-color-panel-border: var(--ck-custom-border);
  --ck-color-toolbar-background: var(--ck-custom-background);
  --ck-color-toolbar-border: var(--ck-custom-border);
  --ck-color-tooltip-background: hsl(252, 7%, 14%);
  --ck-color-tooltip-text: hsl(0, 0%, 93%);
  --ck-color-image-caption-background: hsl(0, 0%, 97%);
  --ck-color-image-caption-text: hsl(0, 0%, 20%);
  --ck-color-widget-blurred-border: hsl(0, 0%, 87%);
  --ck-color-widget-hover-border: hsl(43, 100%, 68%);
  --ck-color-widget-editable-focus-background: var(--ck-custom-white);
  --ck-color-link-default: hsl(190, 100%, 75%);
  z-index: 99999 !important;
  position: relative;
}

