@charset "UTF-8";
:root {
  --flywheel-font-size: 11px;
  --flywheel-header-size: 15px;
  --flywheel-padding: 5px;
  --center-circle-background: #FFC300;
  --img-width: 30px; /* Default width */
  --section-1-font-size: 12px;
  --section-2-font-size: 12px;
  --section-3-font-size: 12px;
  --section-4-font-size: 12px;
  --section-5-font-size: 12px;
  --section-6-font-size: 12px;
  --section-7-font-size: 12px;
  --section-8-font-size: 12px;
  --section-9-font-size: 12px;
  --section-1-top: 20%;
  --section-1-left: 65%;
  --section-2-top: 42%;
  --section-2-left: 82%;
  --section-3-top: 74%;
  --section-3-left: 77%;
  --section-4-top: 90%;
  --section-4-left: 52%;
  --section-5-top: 80%;
  --section-5-left: 25%;
  --section-6-top: 45%;
  --section-6-left: 18%;
  --section-7-top: 20%;
  --section-7-left: 34%;
  --section-8-top: 20%;
  --section-8-left: 34%;
  --section-9-top: 20%;
  --section-9-left: 34%;
  --section-1-background: #686866;
  --section-2-background: #686866;
  --section-3-background: #686866;
  --section-4-background: #686866;
  --section-5-background: #686866;
  --section-6-background: #686866;
  --section-7-background: #686866;
  --section-8-background: #686866;
  --section-9-background: #686866;
  --outer-circle-conic-gradient: conic-gradient(
    rgba(40, 167, 69) 0% 4.67%, /* #28a745 with 50% opacity */
    rgba(40, 167, 69) 4.67% 9.33%, /* #dc3545 with 50% opacity */
    rgba(40, 167, 69) 9.33% 14%, /* #FFBF00 with 50% opacity */
    rgba(40, 167, 69) 14% 18.67%,
    rgba(40, 167, 69) 18.67% 23.33%,
    rgba(40, 167, 69) 23.33% 28%,
    rgba(40, 167, 69) 28% 32.67%,
    rgba(40, 167, 69) 32.67% 37.33%,
    rgba(40, 167, 69) 37.33% 42%,
    rgba(40, 167, 69) 42% 46.67%,
    rgba(40, 167, 69) 46.67% 51.33%,
    rgba(40, 167, 69) 51.33% 56%,
    rgba(40, 167, 69) 56% 60.67%,
    rgba(40, 167, 69) 60.67% 65.33%,
    rgba(40, 167, 69) 65.33% 70%,
    rgba(40, 167, 69) 70% 74.67%,
    rgba(40, 167, 69) 74.67% 79.33%,
    rgba(40, 167, 69) 79.33% 84%,
    rgba(40, 167, 69) 84% 88.67%,
    rgba(40, 167, 69) 88.67% 93.33%,
    rgba(40, 167, 69) 93.33% 98%
  );
  --outer-circle-2-conic-gradient: var(--outer-circle-conic-gradient);
  --outer-circle-3-conic-gradient: var(--outer-circle-conic-gradient);
  --outer-circle-4-conic-gradient: var(--outer-circle-conic-gradient);
  --outer-circle-5-conic-gradient: var(--outer-circle-conic-gradient);
  --from-percent: 0%;
  --to-percent: 0%;
}

/* Styling the track (background for the full slider range) */
.irs-line {
  top: 25px;
  height: 12px;
  background: linear-gradient(to right, #ff0000 0%, #ff0000 var(--from-percent), #f79722 var(--from-percent), #f79722 var(--to-percent), #008000 var(--to-percent), #008000 100%) !important;
  border-radius: 4px;
}

/** Flywheel circle - Scalable & Responsive **/
/* Base Circle Styles */
.outer-circle, .outer-circle-2, .outer-circle-3,
.outer-circle-4, .outer-circle-5 {
  border-radius: 50%;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Dynamic Scaling */
.outer-circle {
  width: calc(40vw - 5px);
  height: calc(40vw - 5px);
  max-width: 585px;
  max-height: 585px;
  background: var(--outer-circle-conic-gradient);
}

.outer-circle-2 {
  width: calc(45vw - 5px);
  height: calc(45vw - 5px);
  max-width: 685px;
  max-height: 685px;
  background: var(--outer-circle-2-conic-gradient);
  z-index: 0;
}

.outer-circle-3 {
  width: calc(50vw - 5px);
  height: calc(50vw - 5px);
  max-width: 780px;
  max-height: 780px;
  background: var(--outer-circle-3-conic-gradient);
  z-index: -1;
}

.outer-circle-4 {
  width: calc(55vw - 5px);
  height: calc(55vw - 5px);
  max-width: 850px;
  max-height: 850px;
  background: var(--outer-circle-4-conic-gradient);
  z-index: -2;
}

.outer-circle-5 {
  width: calc(60vw - 5px);
  height: calc(60vw - 5px);
  max-width: 930px;
  max-height: 930px;
  background: var(--outer-circle-5-conic-gradient);
  z-index: -3;
}

/* Circle Containers */
.circle-container-design {
  width: 30vw;
  height: 30vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  left: 50%;
  background: conic-gradient(var(--section-1-background) 0% 14%, var(--section-2-background) 14% 28%, var(--section-3-background) 28% 42%, var(--section-4-background) 42% 56%, var(--section-5-background) 56% 70%, var(--section-6-background) 70% 84%, var(--section-7-background) 84% 98%);
}

.circle-container {
  width: calc(30vw - 5px);
  height: calc(30vw - 5px);
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 60%;
  transform: translate(-50%, -50%);
  background: conic-gradient(var(--section-1-background) 0% 14%, var(--section-2-background) 14% 28%, var(--section-3-background) 28% 42%, var(--section-4-background) 42% 56%, var(--section-5-background) 56% 70%, var(--section-6-background) 70% 84%, var(--section-7-background) 84% 98%);
}

.circle-container-four-piece {
  width: calc(30vw - 5px);
  height: calc(30vw - 5px);
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 60%;
  transform: translate(-50%, -50%);
  background: conic-gradient(var(--section-1-background) 0% 25%, var(--section-2-background) 25% 50%, var(--section-3-background) 50% 75%, var(--section-4-background) 75% 100%);
}

.circle-container-five-piece {
  width: calc(30vw - 5px);
  height: calc(30vw - 5px);
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 60%;
  transform: translate(-50%, -50%);
  background: conic-gradient(var(--section-1-background) 0% 20%, var(--section-2-background) 20% 40%, var(--section-3-background) 40% 60%, var(--section-4-background) 60% 80%, var(--section-5-background) 80% 100%);
}

.circle-container-six-piece {
  width: calc(30vw - 5px);
  height: calc(30vw - 5px);
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  left: 60%;
  transform: translate(-50%, -50%);
  background: conic-gradient(var(--section-1-background) 0% 16.67%, var(--section-2-background) 16.67% 33.34%, var(--section-3-background) 33.34% 50.01%, var(--section-4-background) 50.01% 66.68%, var(--section-5-background) 66.68% 83.35%, var(--section-6-background) 83.35% 100%);
}

/* Center Circle */
.center-circle {
  position: absolute;
  width: calc(12vw - 5px);
  height: calc(12vw - 5px);
  max-width: 180px;
  max-height: 180px;
  background-color: var(--center-circle-background);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: var(--flywheel-padding);
  font-size: var(--flywheel-font-size) !important;
}

.center-circle div {
  font-size: var(--flywheel-header-size) !important;
}

/* RESPONSIVE SCALING BASED ON SCREEN WIDTH */
@media (max-width: 1400px) {
  .outer-circle, .outer-circle-2, .outer-circle-3,
  .outer-circle-4, .outer-circle-5 {
    width: calc(35vw - 5px);
    height: calc(35vw - 5px);
  }
  .circle-container, .circle-container-design {
    width: calc(26vw - 5px);
    height: calc(26vw - 5px);
  }
  .center-circle {
    width: calc(10vw - 5px);
    height: calc(10vw - 5px);
  }
}
@media (max-width: 1024px) {
  .outer-circle, .outer-circle-2, .outer-circle-3,
  .outer-circle-4, .outer-circle-5 {
    width: calc(30vw - 5px);
    height: calc(30vw - 5px);
  }
  .circle-container, .circle-container-design {
    width: calc(22vw - 5px);
    height: calc(22vw - 5px);
  }
  .center-circle {
    width: calc(8vw - 5px);
    height: calc(8vw - 5px);
  }
}
@media (max-width: 768px) {
  .outer-circle, .outer-circle-2, .outer-circle-3,
  .outer-circle-4, .outer-circle-5 {
    width: calc(25vw - 5px);
    height: calc(25vw - 5px);
  }
  .circle-container, .circle-container-design {
    width: calc(18vw - 5px);
    height: calc(18vw - 5px);
  }
  .center-circle {
    width: calc(6vw - 5px);
    height: calc(6vw - 5px);
  }
}
.center-circle img {
  height: auto;
}

.center-circle h1 {
  margin: 0;
  font-size: 16px;
}

.section-text {
  position: absolute;
  width: 150px;
  text-align: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  color: #fff;
}

.section-text img {
  min-width: var(--img-width);
  height: auto;
  display: block;
  margin: 0 auto 5px auto;
}

/* Position each text section around the circle based on trigonometric calculations */
.section-1 {
  font-size: var(--section-1-font-size);
  top: var(--section-1-top);
  left: var(--section-1-left);
  justify-content: space-between;
}

.section-data-text-first,
.section-data-text-second {
  position: absolute;
  width: auto;
}

/* Default styling when both elements are present */
.section-1.data-text-double .section-data-text-first {
  top: -60%;
  transform: translate(-80%, -30%);
  rotate: 14deg;
}
.section-1.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-130%, -240%);
}
.section-1.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-140%, -540%);
}
.section-1.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-110%, -720%);
}
.section-1.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-110%, -920%);
}

.section-1.data-text-double .section-data-text-second {
  top: -80%;
  transform: translate(425%, 4%);
  rotate: 35deg;
}
.section-1.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-20px, -40px);
}
.section-1.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-100%, -540%);
}
.section-1.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-110%, -720%);
}
.section-1.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-110%, -920%);
}

/* Styling when only one element is present */
.section-1.data-text-single .section-data-text-first,
.section-1.data-text-single .section-data-text-second {
  top: -20%;
  transform: translate(-20%, -80%);
  rotate: 22deg;
  width: 100%;
}
.section-1.data-text-single .section-data-text-first .outer-1,
.section-1.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: absolute;
  transform: translate(-85%, -205%);
}
.section-1.data-text-single .section-data-text-first .outer-2,
.section-1.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: absolute;
  transform: translate(-85%, -462%);
}
.section-1.data-text-single .section-data-text-first .outer-3,
.section-1.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: absolute;
  transform: translate(-85%, -700%);
}
.section-1.data-text-single .section-data-text-first .outer-4,
.section-1.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: absolute;
  transform: translate(-85%, -920%);
}

.section-2 {
  font-size: var(--section-2-font-size);
  top: var(--section-2-top);
  left: var(--section-2-left);
}

/* Default styling when both elements are present */
.section-2.data-text-double .section-data-text-first {
  top: -37%;
  transform: translate(142%, -350%);
  rotate: 68deg;
}
.section-2.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-120%, -305%);
}
.section-2.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-135%, -545%);
}
.section-2.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-105%, -745%);
}
.section-2.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-105%, -945%);
}

.section-2.data-text-double .section-data-text-second {
  top: 55%;
  transform: translate(137%, -545%);
  rotate: 91deg;
}
.section-2.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-100%, -305%);
}
.section-2.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-110%, -525%);
}
.section-2.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-105%, -745%);
}
.section-2.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-105%, -945%);
}

/* Styling when only one element is present */
.section-2.data-text-single .section-data-text-first,
.section-2.data-text-single .section-data-text-second {
  top: 20%;
  transform: translate(65%, -482%);
  rotate: 81deg;
}
.section-2.data-text-single .section-data-text-first .outer-1,
.section-2.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-28px, -45px);
}
.section-2.data-text-single .section-data-text-first .outer-2,
.section-2.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-190%, -512%);
}
.section-2.data-text-single .section-data-text-first .outer-3,
.section-2.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-138%, -770%);
}
.section-2.data-text-single .section-data-text-first .outer-4,
.section-2.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-138%, -970%);
}

.section-3 {
  font-size: var(--section-3-font-size);
  top: var(--section-3-top);
  left: var(--section-3-left);
}

/* Default styling when both elements are present */
.section-3.data-text-double .section-data-text-first {
  top: 10%;
  transform: translate(30%, 560%);
  rotate: 295deg;
}
.section-3.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-125%, 305%);
}
.section-3.data-text-double .section-data-text-first .outer-2 {
  position: inherit;
  transform: translate(-130%, 550%);
}
.section-3.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-95%, 750%);
}
.section-3.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-95%, 950%);
}

.section-3.data-text-double .section-data-text-second {
  top: 45%;
  transform: translate(-190%, 460%);
  rotate: 320deg;
}
.section-3.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-90%, 305%);
}
.section-3.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-75%, 550%);
}
.section-3.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-85%, 750%);
}
.section-3.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-95%, 950%);
}

/* Styling when only one element is present */
.section-3.data-text-single .section-data-text-first,
.section-3.data-text-single .section-data-text-second {
  top: 120%;
  transform: translate(225%, 185%);
  rotate: 304deg;
}
.section-3.data-text-single .section-data-text-first .outer-1,
.section-3.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-120%, 132%);
}
.section-3.data-text-single .section-data-text-first .outer-2,
.section-3.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-122%, 352%);
}
.section-3.data-text-single .section-data-text-first .outer-3,
.section-3.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-92%, 610%);
}
.section-3.data-text-single .section-data-text-first .outer-4,
.section-3.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-75%, 850%);
}

.section-4 {
  font-size: var(--section-4-font-size);
  top: var(--section-4-top);
  left: var(--section-4-left);
}

/* Default styling when both elements are present */
.section-4.data-text-double .section-data-text-first {
  top: 150%;
  transform: translate(190%, -180%);
  rotate: 345deg;
}
.section-4.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-115%, 305%);
}
.section-4.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-85%, 560%);
}
.section-4.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-85%, 760%);
}
.section-4.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-85%, 960%);
}

.section-4.data-text-double .section-data-text-second {
  top: 150%;
  transform: translate(-425%, -135%);
  rotate: 11deg;
}
.section-4.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-90%, 305%);
}
.section-4.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-85%, 560%);
}
.section-4.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-85%, 760%);
}
.section-4.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-85%, 960%);
}

/* Styling when only one element is present */
.section-4.data-text-single .section-data-text-first,
.section-4.data-text-single .section-data-text-second {
  top: 90%;
  transform: translate(-40%, 100%);
}
.section-4.data-text-single .section-data-text-first .outer-1,
.section-4.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-110%, 162%);
}
.section-4.data-text-single .section-data-text-first .outer-2,
.section-4.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-108%, 422%);
}
.section-4.data-text-single .section-data-text-first .outer-3,
.section-4.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-92%, 710%);
}
.section-4.data-text-single .section-data-text-first .outer-4,
.section-4.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-85%, 950%);
}

.section-5 {
  font-size: var(--section-5-font-size);
  top: var(--section-5-top);
  left: var(--section-5-left);
}

/* Default styling when both elements are present */
.section-5.data-text-double .section-data-text-first {
  top: 140%;
  transform: translate(-290%, 70%);
  rotate: 43deg;
}
.section-5.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-120%, 305%);
}
.section-5.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-125%, 560%);
}
.section-5.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-125%, 765%);
}
.section-5.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-125%, 965%);
}

.section-5.data-text-double .section-data-text-second {
  top: 10%;
  transform: translate(-290%, 635%);
  rotate: 64deg;
}
.section-5.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-90%, 305%);
}
.section-5.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-95%, 560%);
}
.section-5.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-95%, 765%);
}
.section-5.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-125%, 965%);
}

/* Styling when only one element is present */
.section-5.data-text-single .section-data-text-first,
.section-5.data-text-single .section-data-text-second {
  top: 140%;
  transform: translate(-430%, 142%);
  rotate: 50deg;
}
.section-5.data-text-single .section-data-text-first .outer-1,
.section-5.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-135%, 92%);
}
.section-5.data-text-single .section-data-text-first .outer-2,
.section-5.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-118%, 342%);
}
.section-5.data-text-single .section-data-text-first .outer-3,
.section-5.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-102%, 632%);
}
.section-5.data-text-single .section-data-text-first .outer-4,
.section-5.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-95%, 842%);
}

.section-6 {
  font-size: var(--section-6-font-size);
  top: var(--section-6-top);
  left: var(--section-6-left);
}

/* Default styling when both elements are present */
.section-6.data-text-double .section-data-text-first {
  top: 47%;
  transform: translate(5%, -666%);
  rotate: 265deg;
}
.section-6.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-90%, -305%);
}
.section-6.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-90%, -560%);
}
.section-6.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-90%, -790%);
}
.section-6.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-90%, -990%);
}

.section-6.data-text-double .section-data-text-second {
  top: 2%;
  transform: translate(93%, -590%);
  rotate: 290deg;
}
.section-6.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-90%, -305%);
}
.section-6.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-90%, -560%);
}
.section-6.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-90%, -790%);
}
.section-6.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-90%, -990%);
}

/* Styling when only one element is present */
.section-6.data-text-single .section-data-text-first,
.section-6.data-text-single .section-data-text-second {
  top: 39%;
  transform: translate(-10%, -642%);
  rotate: 274deg;
}
.section-6.data-text-single .section-data-text-first .outer-1,
.section-6.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-90%, -292%);
}
.section-6.data-text-single .section-data-text-first .outer-2,
.section-6.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-90%, -545%);
}
.section-6.data-text-single .section-data-text-first .outer-3,
.section-6.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-90%, -792%);
}
.section-6.data-text-single .section-data-text-first .outer-4,
.section-6.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-90%, -1012%);
}

.section-7 {
  font-size: var(--section-7-font-size);
  top: var(--section-7-top);
  left: var(--section-7-left);
}

/* Default styling when both elements are present */
.section-7.data-text-double .section-data-text-first {
  top: -2%;
  transform: translate(0%, -350%);
  rotate: 345deg;
}
.section-7.data-text-double .section-data-text-first .outer-1 {
  position: absolute;
  transform: translate(-100%, -305%);
}
.section-7.data-text-double .section-data-text-first .outer-2 {
  position: absolute;
  transform: translate(-100%, -560%);
}
.section-7.data-text-double .section-data-text-first .outer-3 {
  position: absolute;
  transform: translate(-100%, -760%);
}
.section-7.data-text-double .section-data-text-first .outer-4 {
  position: absolute;
  transform: translate(-100%, -960%);
}

.section-7.data-text-double .section-data-text-second {
  top: -10%;
  transform: translate(-380%, -440%);
  rotate: 313deg;
}
.section-7.data-text-double .section-data-text-second .outer-1 {
  position: absolute;
  transform: translate(-90%, -305%);
}
.section-7.data-text-double .section-data-text-second .outer-2 {
  position: absolute;
  transform: translate(-100%, -560%);
}
.section-7.data-text-double .section-data-text-second .outer-3 {
  position: absolute;
  transform: translate(-100%, -760%);
}
.section-7.data-text-double .section-data-text-second .outer-4 {
  position: absolute;
  transform: translate(-100%, -960%);
}

/* Styling when only one element is present */
.section-7.data-text-single .section-data-text-first,
.section-7.data-text-single .section-data-text-second {
  top: -10%;
  transform: translate(-175%, -320%);
  rotate: 333deg;
}
.section-7.data-text-single .section-data-text-first .outer-1,
.section-7.data-text-single .section-data-text-second .outer-1 {
  top: inherit;
  position: inherit;
  transform: translate(-100%, -242%);
}
.section-7.data-text-single .section-data-text-first .outer-2,
.section-7.data-text-single .section-data-text-second .outer-2 {
  top: inherit;
  position: inherit;
  transform: translate(-100%, -505%);
}
.section-7.data-text-single .section-data-text-first .outer-3,
.section-7.data-text-single .section-data-text-second .outer-3 {
  top: inherit;
  position: inherit;
  transform: translate(-100%, -725%);
}
.section-7.data-text-single .section-data-text-first .outer-4,
.section-7.data-text-single .section-data-text-second .outer-4 {
  top: inherit;
  position: inherit;
  transform: translate(-100%, -965%);
}

.section-8 {
  font-size: var(--section-7-font-size);
  top: var(--section-8-top);
  left: var(--section-8-left);
}

.section-9 {
  font-size: var(--section-7-font-size);
  top: var(--section-9-top);
  left: var(--section-9-left);
}

.auth-fluid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: url(/images/gop-animated.svg);
  background-size: cover;
  background-position-y: center;
  background-position-x: right;
  background-repeat: no-repeat;
}

.no-list-style-type {
  list-style: none;
}

.bg-danger {
  color: #fff;
  background-color: #dc3545 !important;
}

.bg-warning {
  color: #fff;
  background-color: #f79722 !important;
}

.incorrect-password-error {
  border-left: 5px solid #eb9a24 !important;
  border: solid 1px;
  border-color: rgb(230, 229, 228);
  padding: 10px;
}

.username-not-exist-error {
  border-left: 5px solid #f0542e !important;
  border: solid 1px;
  border-color: rgb(230, 229, 228);
  padding: 10px;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--ct-modal-content-bg);
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  outline: 0;
}

.drop-text {
  position: relative;
  top: 20px;
}

.pad-top-btn {
  position: relative;
  top: 0px;
}

.toast-warning {
  background-color: #f79722;
  opacity: 0.8;
}

.toast-success {
  background-color: #28a745;
  opacity: 0.8;
}

.toast-error {
  background-color: rgb(220, 53, 69);
  opacity: 0.8;
}

.toast-info {
  background-color: #2f96b4;
  opacity: 0.8;
}

.tb-lb {
  font-weight: bolder !important;
  color: rgb(0, 0, 255);
}

.card {
  border-radius: 0.5rem;
}

.card-header {
  border-radius: 0.5rem;
}

.card-body {
  border-radius: 0.5rem;
}

.invalid-feedback-custom {
  border-color: red !important;
  border: solid;
  border-width: thin;
}

/* Keep “active look” even when collapsed */
.accordion.accordion--subtle {
  /* make the whole group use the subtle primary bg + primary text */
  --ct-accordion-active-bg: var(--ct-primary-bg-subtle);
  --ct-accordion-active-color: var(--ct-primary);
}

/* Header: apply the active vars for both states */
.accordion.accordion--subtle .accordion-button {
  color: var(--ct-accordion-active-color);
  background-color: var(--ct-accordion-active-bg);
  box-shadow: none;
}

/* Ensure collapsed state doesn't revert to default */
.accordion.accordion--subtle .accordion-button.collapsed {
  color: var(--ct-accordion-active-color);
  background-color: var(--ct-accordion-active-bg);
}

/* Use the active chevron color in both states */
.accordion.accordion--subtle .accordion-button::after {
  background-image: var(--ct-accordion-btn-active-icon);
}

/* Optional: keep icon pointing down when collapsed (remove rotate) */
.accordion.accordion--subtle .accordion-button.collapsed::after {
  transform: none; /* or rotate(0deg) */
}

/* Nice rounded look like your screenshot */
.accordion.accordion--subtle .accordion-item,
.accordion.accordion--subtle .accordion-button {
  border-radius: var(--ct-accordion-border-radius);
}

/* Make arrow use the same color as the text */
.accordion.accordion--subtle .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(32%) sepia(97%) saturate(2889%) hue-rotate(221deg) brightness(95%) contrast(97%);
}

/* Optional: ensures same color when collapsed */
.accordion.accordion--subtle .accordion-button.collapsed::after {
  filter: brightness(0) saturate(100%) invert(32%) sepia(97%) saturate(2889%) hue-rotate(221deg) brightness(95%) contrast(97%);
}

@media (min-width: 1308px) and (max-width: 1520px) {
  .auth-fluid {
    background: url(/images/GOP-animated-medium.svg);
    background-size: cover;
    background-position-y: center;
    background-position-x: right;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1087px) and (max-width: 1307px) {
  .auth-fluid {
    background: url(/images/GOP-animated-small.svg);
    background-size: cover;
    background-position-y: center;
    background-position-x: right;
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) and (max-width: 1087px) {
  .auth-fluid {
    background: url(/images/GOP-animated-extra-small.svg);
    background-size: cover;
    background-position-y: center;
    background-position-x: right;
    background-repeat: no-repeat;
  }
}
.textbox-icons {
  position: absolute;
  width: 42px;
  border-radius: 50%;
  height: 40px;
  right: 20px;
  top: 200px;
  background-color: #16a6df;
  padding: 5px;
  display: none;
}

.alert-danger {
  color: #fff !important;
  background-color: red !important;
  border-color: red !important;
}

.bg-danger {
  color: #fff !important;
  background-color: red !important;
  border-color: red !important;
  border-radius: 0.2rem;
  border-width: thin;
}

.ri-arrow-up-s-fill {
  color: rgb(40, 167, 69);
}

.fa-square {
  color: rgb(40, 167, 69);
  position: relative;
}

.ri-arrow-down-s-fill {
  color: #dc3545;
}

.arrow-left-number {
  position: relative !important;
  right: 45px !important;
  top: 5px;
}

.arrow-right-number {
  position: relative !important;
  left: -55px !important;
  top: 5px;
}

.participant-progress {
  background-color: #337ab7 !important;
  color: #fff;
}

.rounded-input-custom {
  border: 1px solid var(--ct-input-border-color);
  border-radius: 0.25rem;
}

.organisationMultiSelect {
  min-width: 100%;
  white-space: initial;
  color: #6c757d;
  text-align: left;
}

.organisationMultiSelect:hover {
  color: #fff;
}

body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover .side-nav-link {
  width: 305px;
}

body[data-sidenav-size=condensed] .side-nav .side-nav-item:hover > .collapse > ul,
body[data-sidenav-size=condensed] .side-nav .side-nav-item:hover > .collapsing > ul {
  width: 235px;
}

body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapse > ul li:hover > .collapse > ul,
body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapsing > ul li:hover > .collapse > ul {
  width: 400px;
}

body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapse > ul li:hover > .collapse > ul,
body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapsing > ul li:hover > .collapse > ul {
  left: 233px;
}

body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapse > ul li:hover > #sideNavTeamMembers > ul,
body[data-sidenav-size=condensed]:not(.authentication-bg) .side-nav .side-nav-item:hover > .collapsing > ul li:hover > #sideNavTeamMembers > ul {
  left: 400px;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.2857142857%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  background: #f5f5f5;
  height: initial;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.has-event .pika-button {
  background: #005da9;
  box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}

.is-outside-current-month .pika-button {
  color: #999;
  opacity: 0.3;
}

.is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.fc .fc-daygrid-event-harness {
  background-color: #2f96b4 !important;
}

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

.scrollable-body {
  min-height: 150px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.scrollable-body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.scrollable-body::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.scrollable-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.scrollable-body-group-activities {
  min-height: 350px;
  max-height: 400px;
  overflow-y: scroll;
}

.scrollable-body-group-activities::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.scrollable-body-group-activities::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.scrollable-body-group-activities::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

option {
  max-width: 100%;
  overflow: hidden;
  word-wrap: normal !important;
  white-space: normal;
}

.badge.badge-left-text {
  vertical-align: middle;
  text-align: left !important;
}

p.bg-light {
  border-radius: 4px;
}

p.bg-waring {
  border-radius: 4px;
}

p.bg-primary {
  border-radius: 4px;
}

.quill-btn {
  position: relative !important;
  top: 50px;
  left: 93%;
  padding: 0.5px;
}

.printable-view {
  visibility: hidden !important;
}

@media print {
  .printable-view {
    display: block !important;
  }
  .d-none {
    display: block !important;
  }
  .print-movement-heading {
    text-align: left !important;
  }
  ::-webkit-scrollbar {
    display: none;
  }
}
.position-fixed-scrolable {
  overflow-y: scroll !important;
  position: fixed !important;
  height: 85%;
}

div.position-fixed-scrolable::-webkit-scrollbar {
  width: 10px;
}

div.position-fixed-scrolable::-webkit-scrollbar-track {
  background: #f1f1f1;
}

div.position-fixed-scrolable::-webkit-scrollbar-thumb {
  background: #888;
}

div.position-fixed-scrolable::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ql-editor {
  overflow-y: hidden !important; /* Prevents scrollbar */
}

.ql-save::after {
  cursor: pointer;
  display: inline-block;
  position: relative;
  content: "Save";
  font-size: 13px;
  padding: 3px;
  color: #fff;
  background-color: #727cf5;
  border-color: #727cf5;
  border-radius: 2px;
}

.dropdown-fixed {
  max-height: 250px;
  width: 100%;
  position: relative;
  overflow-y: scroll;
  overflow-x: scroll;
}

.dropdown-fixed::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.dropdown-fixed::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.dropdown-fixed::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.weight-700 {
  text-align: center;
  vertical-align: middle !important;
  border-radius: 5px;
}

.navbar-bell {
  max-height: 350px;
  overflow-y: scroll;
}

.navbar-bell::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.navbar-bell::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.navbar-bell::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.long-list-with-modals {
  max-height: 520px;
  overflow-y: scroll;
}

.long-list-with-modals::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.long-list-with-modals::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

.long-list-with-modals::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.score-circle {
  width: 50px;
  height: 20px;
  background: none;
  padding: 2px;
  text-align: center;
  vertical-align: middle;
  font-weight: 100;
  border-radius: 8px;
}

.score-text {
  color: #E6562A;
}

tr.end-question {
  border-top: 1.5pt solid darkgrey;
}

tr.no-border-row > td {
  border-block: none;
}

sup {
  top: -1.6em;
  margin-left: -9px;
}

sub {
  bottom: -1.3em;
  right: 15px;
}

.mt-2-5 {
  margin-top: 0.095rem !important;
}

.mt-2-6 {
  margin-top: 1.3rem !important;
}

.font-30 {
  font-size: 30px !important;
}

.avatar-10 {
  width: 8rem;
  height: 8rem;
}

.conversation-list .chat-avatar {
  float: left;
  text-align: center;
  width: 65px;
}

.chat-list {
  min-height: 418px;
  overflow-y: scroll;
}

.chat-list::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.chat-list::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.chat-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.exam-circle {
  width: 200px;
  height: 200px;
  padding-top: 43px;
  border-radius: 50%;
  font-size: 42px;
  text-align: center;
  font-weight: bold;
  border: solid;
  line-height: 75px;
}

.font-30 {
  font-size: 30px !important;
}

.exam-circle-no-score {
  width: 200px;
  height: 200px;
  padding-top: 50px;
  border-radius: 50%;
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  border: solid;
  line-height: 30px;
}

.suggest {
  font-weight: 700;
  background: #ffefed;
  border-radius: 4px;
  padding: 3px;
  color: #0000ee;
}

.ql-autocomplete-menu {
  position: relative !important;
  max-width: fit-content !important;
}

.ql-autocomplete-menu.completions::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.ql-autocomplete-menu.completions::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.ql-autocomplete-menu.completions::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.scrollable-chat {
  min-height: 350px;
  overflow-y: scroll;
  overflow-x: scroll; /* Add horizontal scrolling */
  max-height: 550px;
}

.scrollable-chat::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.scrollable-chat::-webkit-scrollbar {
  width: 6px; /* For vertical scrollbar */
  height: 4px; /* For horizontal scrollbar */
  background-color: #F5F5F5;
}

.scrollable-chat::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.tt-menu {
  width: 100% !important;
  padding: 8px 0 !important;
  max-height: 200px !important;
}

span.suggest {
  background-color: #fff;
}

.completions > li > button > .matched {
  font-weight: 700;
  background: #fff;
  border-radius: 2px;
  padding: 2px;
  color: blue;
}

.completions > li > button:hover {
  font-weight: 700;
  background: #fff;
  border-radius: 2px;
  padding: 2px;
  color: blue;
}

.ql-tooltip {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.badge {
  font-weight: normal;
}

.icon-video-bg {
  border-radius: 5px;
  background-color: #005da9;
  margin-top: -5px;
  position: relative;
}

.faq-question.normal-text {
  font-weight: normal;
  font-size: normal;
  color: #6C757D !important;
}

.faq-question-q-box-v2 {
  height: 50px;
  width: 50px;
  color: #727cf5;
  background-color: rgba(114, 124, 245, 0.25);
  -webkit-box-shadow: var(--ct-box-shadow-lg);
  box-shadow: var(--ct-box-shadow-lg);
  text-align: center;
  border-radius: 50%;
  float: left;
  font-weight: 700;
  line-height: 50px;
}

.pointer {
  cursor: pointer;
}

.pointer-disabled {
  cursor: none;
  color: lightgray !important;
}

.mark {
  background-color: yellow;
  color: black;
}

.meeting {
  border: 2px solid var(--ct-info);
  border-radius: 7px !important;
}
.meeting .ctext-wrap {
  border: solid var(--ct-light) 1px;
}

.ctext-wrap {
  background-color: #fff !important;
  border: solid var(--ct-light) 2px;
  text-align: left !important;
  font-size: 14px !important;
  border-radius: 7px !important;
  width: -webkit-fill-available;
}

.conversation-list .odd .conversation-text {
  float: right !important;
  margin-right: 12px;
  text-align: right;
  width: 85% !important;
}

.conversation-list .conversation-text {
  float: left;
  font-size: 13px;
  margin-left: 12px;
  width: 85%;
}

.no-bold {
  font-weight: normal;
}

.chat-member {
  border-radius: 5px !important;
}

.weekday-btn {
  color: #333;
  border-radius: 25px !important;
  cursor: pointer;
  border: 1px solid #ffbc00 !important;
  padding: 8px;
  margin-left: 1rem;
}

.weekday-btn-active {
  color: #333;
  border-radius: 25px !important;
  cursor: pointer;
  border: 1px solid #ffbc00 !important;
  background-color: #ffbc00 !important;
  padding: 8px;
  margin-left: 1rem;
}

.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
  position: sticky !important;
}

div.form-floating > select.form-control:not([size]):not([multiple]) {
  height: inherit;
}

button.no-border.font-35 {
  background-color: #fff;
  border: none;
}

.font-35 {
  font-size: 25px !important;
}

.font-40 {
  font-size: 30px !important;
  border: none;
}

.font-60 {
  font-size: 50px !important;
  border: none;
}

li.no-style {
  list-style-type: none;
}

ul.multiselect-checkboxes {
  padding-left: 0rem;
}

/* Set ol to look like an unordered list by default */
ol {
  list-style-type: disc;
}

/* Display standard numbering for li[data-list="decimal"] */
li[data-list=ordered] {
  list-style-type: decimal; /* Use the default decimal numbering */
}

/* Remove bullet for li[data-list="decimal"] in case of other inherited styles */
li[data-list=ordered]::before {
  content: ""; /* Clear any custom bullet styling */
}

.no-bold {
  font-weight: normal;
}

.scrollable-body-resources {
  max-height: 350px;
  overflow-y: scroll;
}

.scrollable-body-resources::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: none;
}

.scrollable-body-resources::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.scrollable-body-resources::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: none;
  background-color: lightgrey;
}

.progress-25 {
  height: 25px;
}

.bg-danger-progress {
  --ct-bg-opacity: 1;
  background-color: red !important;
  border-radius: 0.2rem;
  border-width: thin;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  color: var(--ct-modal-color);
  pointer-events: auto;
  background-color: var(--ct-modal-bg);
  background-clip: padding-box;
  border: var(--ct-modal-border-width) solid var(--ct-modal-border-color);
  border-radius: var(--ct-modal-border-radius);
  outline: 0;
}

#pre-loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 99;
}

#loading-image {
  z-index: 100;
}

.table.condensed > :not(caption) > * > * {
  padding: 0.3rem 0.3rem !important;
  background-color: var(--ct-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--ct-table-accent-bg);
  box-shadow: inset 0 0 0 9999px var(--ct-table-accent-bg);
}

.bootstrap-timepicker-widget > table {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.bootstrap-timepicker-widget > table > tbody {
  text-align: center;
}
.bootstrap-timepicker-widget > table > tbody input.bootstrap-timepicker-hour, .bootstrap-timepicker-widget > table > tbody .bootstrap-timepicker-minute {
  text-align: center;
}

.liquid-container {
  position: relative;
  overflow: hidden;
  transform: none !important;
}

.modal-content {
  border-radius: 0.95rem !important;
}

.modal {
  transform: scale(1);
  animation: blowUpModal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal + .modal-content {
  z-index: 1;
  animation: blowUpContent 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.out {
  animation: blowUpModalTwo 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.out + .modal-content {
  animation: blowUpContentTwo 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes blowUpContent {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  99.9% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(0);
  }
}
@keyframes blowUpContentTwo {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blowUpModal {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blowUpModalTwo {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.icon-animate {
  transition-duration: 500ms;
  font-size: 30px;
}

.text-bg-coach {
  color: #fff !important;
  background-color: #F69320 !important;
}

/***** Slide Left *****/
.slide-left {
  animation: 0.8s slide-left;
}

@keyframes slide-left {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: -20%;
  }
}
/***** Slide Right *****/
.slide-right {
  animation: 0.8s slide-right;
}

@keyframes slide-right {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: 20%;
  }
}
.snow-editor-tooltext > .ql-toolbar.ql-snow {
  display: block !important;
}

.ql-container.ql-snow {
  border: 1px solid #ccc !important;
}

.hidden {
  display: none !important;
}

.plansMultiSelect {
  position: inherit !important;
  min-width: 100%;
  white-space: initial;
  color: #6c757d;
  text-align: left;
}

.scrollDownIndicator {
  position: fixed;
  bottom: 80px;
  right: 60px;
  width: 200px;
  height: 65px;
  display: none;
  transition: opacity 0.3s;
  text-align: center;
  padding: 10px;
}

.scroll-btn:hover {
  opacity: 1;
}

.scroll-btn:after {
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  display: block;
}

#coachingdate > input {
  margin: 0;
  /* font-family: inherit; */
  font-size: inherit;
  line-height: inherit;
  color: #6c757d;
  border: none;
  cursor: pointer;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.animated-notifications {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

.mh-50 {
  min-height: 50px;
}

#system-chat > * > .ctext-wrap {
  width: 100% !important;
}

.system-chat .ctext-wrap {
  background-color: #fff !important;
  border: solid #6e589c 2px;
  text-align: left !important;
  font-size: 14px !important;
  border-radius: 7px !important;
  animation: horizontal-shaking 0.35s linear 0.95s 7;
}

.system-chat .ctext-wrap:after {
  border-top-color: #6e589c;
  border-right-color: #6e589c;
}

.system-chat .notif.ctext-wrap {
  border: solid var(--ct-light) 2px;
}

.system-chat .notif.ctext-wrap:after {
  border-top-color: var(--ct-light);
  border-right-color: var(--ct-light);
}

.meeting .ctext-wrap:after {
  border-top-color: var(--ct-info);
  border-right-color: var(--ct-info);
}

.meeting .notif.ctext-wrap {
  border: solid var(--ct-info) 2px;
}

.meeting .notif.ctext-wrap:after {
  border-top-color: var(--ct-info);
  border-right-color: var(--ct-info);
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.conversation-list .odd .ctext-wrap:after {
  border-color: transparent;
  border-left-color: var(--ct-light);
  border-top-color: var(--ct-light);
  right: -11px;
  left: auto;
}

.conversation-list .ctext-wrap:after {
  left: -12px;
}

.conversation-list .chat-avatar img {
  width: 44px;
}

img.bg-success {
  padding: 1.5px;
}

img.bg-danger {
  padding: 1.5px;
  margin-top: 0px;
}

img.img-fluid {
  max-width: 100%;
  height: 70% !important;
}

.max-w-full {
  max-width: 100%;
}

.meeting-outcome {
  width: 3rem;
  height: 3rem;
  padding-top: 13px;
  padding-left: 5px;
  border-radius: 50%;
  /* font-size: 15px; */
  text-align: center;
  font-weight: bold;
  border: solid;
  line-height: 20px;
  left: 15%;
  position: inherit;
  color: var(--ct-link-color);
}

.anchor {
  color: var(--ct-link-color);
}

.text-left {
  text-align: left;
}

.avatar-5 {
  width: 4rem;
  height: 4rem;
}

.text-gold {
  color: gold;
}

td.bg-light {
  --ct-bg-opacity: 1;
  background-color: rgba(var(--ct-light-rgb), var(--ct-bg-opacity)) !important;
}

th.bg-light {
  --ct-bg-opacity: 1;
  background-color: rgba(var(--ct-light-rgb), var(--ct-bg-opacity)) !important;
}

.side-nav-second-level {
  margin-top: calc(var(--ct-menu-item-padding-y) * -0.5);
  padding-left: calc(var(--ct-leftbar-width-sm) - 50px);
}

.progress-container {
  position: relative;
  width: 45px;
  height: 36px;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* Rotate to start from the top */
}

.progress-circle__background {
  fill: none;
  stroke: #e6e6e6; /* Light grey background for the circle */
  stroke-width: 2;
}

.progress-circle__background-fill {
  fill: none;
  stroke: rgb(114, 124, 245);
  stroke-width: 2;
}

.progress-circle__bar {
  fill: none;
  stroke: rgb(114, 124, 245); /* The color of the progress */
  stroke-width: 2;
  stroke-dasharray: 138; /* 2 * PI * r (r = 22) */
  stroke-dashoffset: 138; /* Start with the circle empty */
  transition: stroke-dashoffset 0.3s;
}

.ri-cloud-off-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ri-cloud-off-fill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modules-container {
  display: flex;
  justify-content: space-between; /* Space modules evenly */
  margin: 20px;
}

.module {
  max-width: 150px; /* Optional: Limits the width of each module to control title wrapping */
  flex-grow: 1; /* Allows modules to take up equal space */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.module-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: red;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.module-circle-current {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px var(--ct-purple) solid;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  box-shadow: 10px 7px 20px var(--ct-purple);
  cursor: pointer;
}

.module-circle-future {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px #bbbbbb solid;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.module-circle-future .mod-lock {
  position: absolute;
  top: -10px;
  right: -4px;
  font-size: 25px;
  font-weight: normal;
  color: #777676;
}

.module-circle.active,
.module-circle.future.active {
  box-shadow: 0px 25px 20px rgb(0, 0, 0);
}

.module-circle .fill,
.module-circle-current .fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0acf97;
  transition: height 0.5s ease;
  cursor: pointer;
}

.align-right {
  text-align: right;
  padding-left: 1px;
}

.ember-tooltip {
  max-width: 200px;
  padding: 6px 10px;
  color: #fff;
  background: transparent;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
  white-space: normal;
  /* IE doesnt support initial so fall back to normal */
  white-space: initial;
}

.speech-bubble {
  position: absolute;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  background: rgba(58, 60, 71, 0.9);
  font-size: 14px;
  z-index: 9999;
  white-space: normal; /* Allow text wrapping */
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -20px; /* Adjust this value to match bubble placement */
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent #2f96b4; /* Arrow pointing left */
}

.no-show {
  display: none !important;
}

.border-2x {
  border-width: 2.5px !important;
}

.default-tooltip .tooltip-inner,
.danger-tooltip .tooltip-inner,
.success-tooltip .tooltip-inner {
  text-align: left;
  max-width: 500px;
  overflow: hidden !important;
}

.vertical-text {
  writing-mode: vertical-rl; /* Rotate text vertically */
  transform: rotate(180deg); /* Rotate the text to face the correct direction */
  font-size: 30px;
  height: inherit;
  display: flex;
  align-items: right;
  justify-content: right;
}

.team-anchor {
  font-size: 1.025rem;
}

.form-group.noshow {
  display: none;
}

img.rounded-start {
  max-width: 100%;
}

img.rounded-start-participant {
  max-width: 105%;
}

.card-title {
  font-weight: normal;
}

.text-dodgerblue {
  color: dodgerblue;
}

/* Disable hyper style due to conflict with plugin style for productio builds */
li[data-list=ordered] {
  list-style-type: none !important;
}

.performance-bar {
  display: inline-block;
  width: 40px; /* adjust to taste */
  height: 25px; /* adjust to match your image */
  border-radius: 3px;
  padding: 2px;
}

.good {
  background-color: #4CAF50; /* green */
}

.great {
  background-color: #4CAF50; /* green */
}

.gap {
  background-color: red !important;
}

.feedback-text {
  line-height: 1.6;
}