@import url(/assets/vanilla-38d82482be9e0677f320f9e31abd3c2d32c648a1eb0644fb4e1c9f062a35eafe.css);
@import url(/assets/sortable-997456959f0596ddd61152d8aaaad06c18219c356812784fc6f141e25e7181c8.css);
@import url(/assets/filter-4c9c2fdcce315ec980b7dc7974f8467d2bf046b6b746b323022294e7aca62aa8.css);
@import url(/assets/date-range-4e9c0f06fb38e9b1768b6c035ab6c7dd1ef3d0ce78baf6693d29049e4b9c9639.css);
@import url(/assets/code-mirror-4e19751e9e27d2d6c9c900dbbdc32f9a19186d3fb6b9e7153caa1b0b976aacd1.css);
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .k-main {
    @apply font-karla font-normal leading-none;
  }

  .k1 {
    @apply k-main text-[80px] 3xl:text-8xl;
  }

  .k2 {
    @apply k-main text-6xl 3xl:text-7xl;
  }

  .k3 {
    @apply k-main text-[40px] 3xl:text-5xl;
  }

  .h-main {
    @apply font-poppins font-normal leading-none;
  }

  /* Fontsize - 50px */
  .h1 {
    @apply h-main text-[50px] 3xl:text-6xl 4xl:text-7xl;
  }

  /* Fontsize - 40px */
  .h2 {
    @apply h-main text-[40px] 3xl:text-5xl 4xl:text-6xl;
  }

  /* Fontsize - 30px */
  .h3 {
    @apply h-main text-3xl 3xl:text-4xl 4xl:text-5xl;
  }

  /* Fontsize - 24px */
  .h4 {
    @apply h-main text-2xl 3xl:text-3xl 4xl:text-4xl;
  }

  /* Fontsize - 20px */
  .h5 {
    @apply h-main text-xl 3xl:text-2xl 4xl:text-3xl;
  }

  .t-main {
    @apply font-dm-sans font-normal leading-none;
  }

  /* Fontsize - 20px */
  .t1 {
    @apply t-main text-base sm:text-xl 3xl:text-2xl 4xl:text-3xl;
  }

  /* Fontsize - 16px */
  .t2 {
    @apply t-main text-sm sm:text-base 3xl:text-xl 4xl:text-2xl;
  }

  /* Fontsize - 14px */
  .t3 {
    @apply t-main text-xs sm:text-sm 3xl:text-base 4xl:text-xl;
  }

  /* Fontsize - 12px */
  .t4 {
    @apply t-main text-2xs sm:text-xs 3xl:text-sm 4xl:text-base;
  }

  /* Fontsize - 10px */
  .t5 {
    @apply t-main text-2xs 3xl:text-xs 4xl:text-sm;
  }

  /* Fontsize - 8px */
  .t6 {
    @apply t-main text-3xs 3xl:text-3xs 4xl:text-xs;
  }

  .btn {
    @apply t2 font-medium px-xl py-3 border-black;
  }

  .datepicker-cell.disabled {
    @apply text-lightGray;
  }

  .datepicker-cell.today {
    @apply bg-lightGray !rounded-full;
  }

  .datepicker-cell.selected {
    @apply !bg-teal !rounded-full;
  }

  .datepicker-cell#previous-selected {
    @apply !rounded-full;
  }
}
.cm-editor {
  display: flex;
  min-height: 100%;
  width: 100%;
}

.cm-scroller {
  padding-bottom: 1.25rem;
  flex-grow: 1;
  height: 100%;
}

.folder {
  cursor: pointer;
  list-style: none;
  margin-bottom: 0.125rem;
  position: relative;
}

.folder-title::before {
  display: inline-block;
  margin-right: 0.25rem;
  transition: transform 200ms ease-in-out;
  transform: rotate(90deg);
  content: "▸";
}

.folder.collapsed .folder-title::before {
  transform: rotate(0deg);
}

.folder-title,
.file-wrapper {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  width: 100%;
  border: 1px solid transparent;
}

.file-wrapper {
  cursor: pointer;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.folder-title:hover,
.file-wrapper:hover {
  background-color: #323842;
}

.file-edit-button,
.file-remove-button {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.file-wrapper.active .file-remove-button,
.file-wrapper:hover .file-remove-button,
.file-wrapper.active .file-edit-button,
.file-wrapper:hover .file-edit-button {
  opacity: 1;
}

.folder-contents {
  padding-left: 0;
}

.folder.collapsed .folder-contents {
  display: none;
}

.file {
  list-style: none;
}

.file-wrapper.active {
  background-color: #323842;
  border: 1px solid #404753;
  width: 100%;
}

.dirty {
  color: #f1fa8c !important;
}

.open-file-tab {
  display: inline-flex;
  align-items: center;
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 2rem;
  cursor: pointer;
  transition: background-color 200ms ease-in-out;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 250px;
}

.open-file-tab.default-file {
  padding-right: 1.5rem;
}

.open-file-tab:hover {
  background-color: #323544;
}

.open-file-tab.active {
  background-color: #282a36;
  color: #f1fa8c;
}

.close-button {
  background-color: transparent;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  margin-left: 0.5rem;
  color: #6b7280;
  position: absolute;
  right: 0.5rem;
}

.close-button:hover {
  background-color: #4c4f64;
  color: #e5e7eb;
}

body #webgazerVideoContainer {
  opacity: 0;
}

body #webgazerVideoFeed {
  border-radius: 10px;
}
.average-score-slider {
  --slider-height: 4px;
  --thumb-size: 12px;
  --track-color: #DADADA;
  --thumb-color: #232323;
  position: relative;
}

.average-score-slider .double-slider {
  z-index: 10;
  pointer-events: none;
  top: 3px;
}

.average-score-slider .double-slider::-webkit-slider-runnable-track {
  height: var(--slider-height);
  background: transparent;
  border-radius: 3px;
}

.average-score-slider .double-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  margin-top: 0px;
  background-color: var(--thumb-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 20;
}

.average-score-slider .double-slider::-moz-range-thumb {
  height: var(--thumb-size);
  width: var(--thumb-size);
  background-color: var(--thumb-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 20;
  border: none;
}

.average-score-slider .selected-range {
  font-size: 0.75rem;
  color: #6B7280;
  text-align: center;
  margin-top: 0.25rem;
}
:root {
  --color-offBlack: #232323;
}

input[type="range"]::-webkit-slider-thumb {
  height: 12px;
  width: 12px;
}

.double-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.double-slider::-webkit-slider-runnable-track,
.double-slider::-moz-range-track,
.double-slider::-ms-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 6px;
}

.double-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: var(--color-offBlack) !important;;
  cursor: pointer;
  margin-top: -3px;
  pointer-events: auto;
  border-radius: 50%;
}

.double-slider::-ms-thumb {
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--color-offBlack)  !important;
  pointer-events: auto;
}

.double-slider::-moz-range-thumb {
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--color-offBlack);
  pointer-events: auto;
  border-color: var(--color-offBlack);
}

.double-slider:active::-webkit-slider-thumb{
  background-color: var(--color-offBlack);
  border: 3px solid var(--color-offBlack);
}
.single-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    background-color: transparent;
    height: 6px;
}

.single-slider::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 6px;
    background: linear-gradient(to right, #000 var(--slider-value), #DADADA var(--slider-value));
    border-radius: 3px;
}

.single-slider::-moz-range-track {
    height: 6px;
    background: linear-gradient(to right, #000 var(--slider-value), #DADADA var(--slider-value));
    border-radius: 3px;
}

.single-slider::-ms-track {
    height: 6px;
    background: linear-gradient(to right, #000 var(--slider-value), #DADADA var(--slider-value));
    border-radius: 3px;
}

.single-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background: #000 !important;
    height: 12px;
    width: 12px;
    cursor: pointer;
    margin-top: -3px;
    border-radius: 50%;
    border: none;
    position: relative;
    z-index: 2;
}

.single-slider::-moz-range-thumb {
    -moz-appearance: none !important;
    background: #000 !important;
    height: 12px;
    width: 12px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    position: relative;
    z-index: 2;
}

.single-slider::-ms-thumb {
    appearance: none !important;
    background: #000 !important;
    height: 12px;
    width: 12px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    position: relative;
    z-index: 2;
}
.tag-cloud-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}

.tag-cloud-row {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.tag-cloud-row:nth-child(1) {
  animation: scroll 35s linear infinite;
}

.tag-cloud-row:nth-child(2) {
  animation: scroll-reverse 28s linear infinite;
}

.tag-cloud-row:nth-child(3) {
  animation: scroll 42s linear infinite;
}

.tag-cloud-row:nth-child(4) {
  animation: scroll-reverse 32s linear infinite;
}

.tag {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.2);
  color: rgb(20, 184, 166);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tag-cloud-row {
    animation: none !important;
  }
}

.noise {
  background: linear-gradient(to top, rgb(35, 103, 251), transparent),
    url(/assets/grainy-0b84b6a068a83b0c8ee20529cf21d0750931bef5c31c554032f65f147b0f7c23.svg);
  filter: contrast(200%) brightness(270%);
  opacity: 0.8;
}

.noise-experts {
  background: linear-gradient(to right, rgb(0 182 255), transparent),
    url(/assets/grainy-0b84b6a068a83b0c8ee20529cf21d0750931bef5c31c554032f65f147b0f7c23.svg);
  filter: contrast(120%) brightness(270%);
}

@media (max-width: 768px) {
  .noise-experts {
    background: linear-gradient(to top, rgb(0 182 255), transparent),
      url(/assets/grainy-0b84b6a068a83b0c8ee20529cf21d0750931bef5c31c554032f65f147b0f7c23.svg);
    filter: contrast(120%) brightness(270%);
  }
}

.video-sphere {
  filter: hue-rotate(330deg);
  animation: hue-rotate 10s linear infinite;
  filter: brightness(1.2);
}

@keyframes hue-rotate {
  0% {
    filter: hue-rotate(330deg);
  }
  50% {
    filter: hue-rotate(358deg);
  }
  100% {
    filter: hue-rotate(300deg);
  }
}

.video-container {
  position: absolute;
  top: 112%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  margin: 0 auto;
  z-index: 20;
  animation: video-pulse 10s ease-in-out infinite;
}

@media (max-width: 768px) {
  .video-container {
    width: 450px;
    height: 450px;
  }
}

.masked-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 55%,
    transparent 56%
  );
  mask-image: radial-gradient(circle at center, black 55%, transparent 56%);
  mix-blend-mode: multiply;
  z-index: 2;
  position: relative;
  border-radius: 50%;
  animation: rotate 50s linear infinite;
}

.ring-wrapper {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ring {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(191, 249, 252, 0.6) 80%,
    transparent 90%
  );
  filter: blur(30px);
  transform-origin: center;
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    scale: 1;
    filter: blur(30px);
  }
  50% {
    scale: 1.1;
    filter: blur(20px);
  }
  100% {
    scale: 1;
    filter: blur(30px);
  }
}

@keyframes video-pulse {
  0% {
    scale: 0.99;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.99;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gradient-background {
  animation: gradient-transition 10s ease-in-out infinite;
}

@keyframes gradient-transition {
  from {
    filter: hue-rotate(0);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

.floating-point {
  position: relative;
  animation: float 6s ease-in-out infinite;
  position: absolute;
  transition: transform 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: rgb(0 204 233 / 64%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.floating-point:nth-child(1) {
  scale: 0.5;
  animation-delay: 0s;
}

.floating-point:nth-child(2) {
  scale: 0.7;
  animation-delay: 0.1s;
}

.floating-point:nth-child(3) {
  scale: 0.5;
  animation-delay: 0.2s;
}

.floating-point:nth-child(4) {
  scale: 0.6;
  animation-delay: 0.3s;
}

.floating-point:nth-child(5) {
  scale: 0.5;
  animation-delay: 0.4s;
}

.floating-point:nth-child(6) {
  scale: 0.5;
  animation-delay: 0.5s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.point-pulse {
  background: rgba(0, 255, 203, 0.5);
}

.point-pulse-dot {
  background: rgb(0, 255, 203);
}
.whySwiper .swiper-slide {
  width: 19rem !important;
  transition: opacity 0.35s, transform 0.35s;
}

.whySwiper .why-card {
  transition: inherit;
}

.icon-wrap {
  border-radius: 0.5rem;
  background: #5feefe;
  transition: background-color 0.3s ease;
}

.icon-wrap .icon-img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.whySwiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.25;
  transform: scale(0.88);
}

.whySwiper .swiper-slide-active .why-card {
  background: #ffffff;
  border-color: #e5e7eb;
  color: inherit;
}

.whySwiper .swiper-slide-active .why-card h5,
.whySwiper .swiper-slide-active .why-card p {
  color: inherit;
}

.whySwiper .swiper-slide-active .icon-wrap {
  background: #000000;
}

.whySwiper .swiper-slide-active .icon-wrap .icon-img {
  filter: brightness(0) invert(1);
}

.logos-slider {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.logos-slider::before,
.logos-slider::after {
  content: "";
  position: absolute;
  top: -25px;
  width: 100px;
  height: 50px;
  background: linear-gradient(to right, #ffffff, transparent);
  z-index: 10;
}

.logos-slider::before {
  left: 0;
}

.logos-slider::after {
  right: 0;
  transform: rotate(180deg);
}

.logos-slide {
  flex-shrink: 0;
  width: 150px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide 30s linear infinite;
}

@media (max-width: 768px) {
  .logos-slide {
    width: 120px;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-slider {
    animation: none;
  }
}
.range {
  background-color: #F3FDFF !important;
}

.range-start, .range-end {
  background-color:#6AD8E4 !important;
}
.show-filter {
  animation: slideIn 1s ease-in-out forwards;
}

.show-filter ~ .filter-sibling {
  animation: showSiblingAnimation 0.5s ease-in-out forwards;
}

.hide-filter {
  animation: slideOut 0.5s ease-in-out forwards;
}

.hide-filter ~ .filter-sibling {
  animation: hideSibblingAnimation 0.5s linear backwards;
}

.show-animation-complete {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.hide-animation-complete {
  opacity: 0;
  transform: translateX(-100%);
  display: none;
}

@keyframes slideIn {
  from {
    opacity: 1;
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(5%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
    display: none;
  }
}

@keyframes showSiblingAnimation {
  from {
    transform: translateX(-280px);
  }

  to {
    transform: translateX(0px);
  }
}

@keyframes hideSibblingAnimation {
  0% {
    transform: translateX(0);
  }

  /* 99% {
    transform: translateX(-280px);
  } */

  100% {
    /* transform: translateX(0); */
    transform: translateX(-280px);
  }
}
/* Drag Class */
.sortable-chosen {
  /* background-color: white !important; */
  opacity: 1 !important;
}

body:has(.sortable-chosen) * {
  user-select: none;
  cursor: grabbing !important;
}
html {
  font-family: 'DM Sans', sans-serif;
}

.gradient-bottom {
  background: linear-gradient(180deg, #1d1d1f 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradient-top {
  background: linear-gradient(180deg, rgba(29, 29, 31, 0) 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Radio button color is Off Black */
input[type='radio'] {
  border: 2px solid #ffffff;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

input[type='radio']:focus,
input[type='radio']:checked,
input[type='radio']:checked:hover,
input[type='radio']:checked:focus {
  border: 2px solid #ffffff;
  color: #232323;
  outline: none;
  background: #232323;
  --tw-ring-color: none;
}

/* Radio button color when is Dark Teal */
input[type='radio'].dark-teal {
  /* border: 1px solid #545256; */
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ͼq {
  color: #EA4335;
}

.ͼs {
  color: #588C70;
}

input[type='radio']:focus.dark-teal,
input[type='radio']:checked.dark-teal,
input[type='radio']:checked:hover.dark-teal,
input[type='radio']:checked:focus.dark-teal {
  /* border: 1px solid #ffffff; */
  color: #008899;
  outline: none;
  background: #008899;
  --tw-ring-color: none;
}

/* Checkbox color is Off Black */
input[type='checkbox'] {
  border-radius: 4px;
  color: #232323;
  border-color: #232323;
  cursor: pointer;
}

input[type='checkbox']:checked {
  background-size: 8px 6px;
}

input[type='checkbox']:focus {
  outline: none;
  box-shadow: 0 0 0 1px #232323;
  border: none;
}

.snd-grid-col-5 {
  grid-auto-columns: 20%;
}

.snd-grid-col-9 {
  grid-auto-columns: 12%;
}

.scrollbar-width-thin::-webkit-scrollbar {
  width: 3px;
}

.scrollbar-width-normal::-webkit-scrollbar,
.scrollbar-scope *::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-border::-webkit-scrollbar-track {
  border: 1px solid #dadada;
}

.scrollbar-margin-top-2::-webkit-scrollbar-track {
  margin-top: 8px;
}

.scrollbar-no-border::-webkit-scrollbar-track {
  border: none;
}

.snd-horizontal-scroll-bar::-webkit-scrollbar,
.scrollbar-scope *::-webkit-scrollbar {
  height: 6px;
}

.snd-horizontal-scroll-bar::-webkit-scrollbar-track,
.scrollbar-scope *::-webkit-scrollbar-track {
  background-color: #fcfcfc;
  border-radius: 100px;
}

.snd-horizontal-scroll-bar::-webkit-scrollbar-thumb,
.scrollbar-scope *::-webkit-scrollbar-thumb {
  background-color: #bababa;
  border-radius: 100px;
}

.rtl-content {
  direction: rtl;
}

.ltr-content {
  direction: ltr;
}

.hidden-scroll::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.grabbable {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-out {
  animation: fadeOut 1s ease-in-out;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.w-112 {
  width: 28rem;
}

.home-gradient {
  background: linear-gradient(
    311.86deg,
    rgba(0, 227, 255, 0.3) 5.19%,
    rgba(0, 227, 255, 0.3) 29.65%,
    rgba(162, 247, 190, 0.3) 63.91%,
    rgba(210, 255, 225, 0.3) 87.75%
  );
}

.why-gradient-center,
.why-gradient-left,
.why-gradient-right {
  position: relative;
}

.why-gradient-center::before,
.why-gradient-left::before,
.why-gradient-right::before {
  content: '';
  width: 100%;
  height: 70%;
  position: absolute;
  filter: blur(57px) opacity(0.6);
}

.why-gradient-center::before {
  background: linear-gradient(270deg, rgba(1, 231, 240, 0.47) -7.62%, rgba(60, 255, 123, 0.79) 123.56%);
}

.why-gradient-left::before {
  background: linear-gradient(270deg, rgba(60, 255, 123, 0.79) 10.63%, rgba(1, 231, 240, 0.47) 362.89%);
}

.why-gradient-right::before {
  background: linear-gradient(270deg, rgba(60, 255, 123, 0.79) -195.1%, rgba(1, 231, 240, 0.47) 54.6%);
}

.why-gradient2 {
  position: relative;
}

.why-gradient2::before,
.why-gradient2::after {
  content: '';
  width: 28px;
  height: 16rem;
  position: absolute;
  z-index: 10;
  filter: blur(57px);
  top: 3.5rem;
}

.why-gradient2::before {
  background: #3cff7b;
  left: 0;
}

.why-gradient2::after {
  background: #01e7f0;
  right: 0;
}

.home-box-shadow {
  box-shadow: inset 0 40px 40px 0 #fff, inset 0 -40px 40px 0 #fff;
  border: 1px solid #fff;
}

.bg-experts {
  @media (min-width: 768px) {
    background-image: url(/assets/home/person-2-6c7de19c4da5d1b47761c8c659ad487a925da547941d9d4667a39284f8c22ddf.png);
  }

  @media (min-width: 1920px) {
    background-image: url(/assets/home/person-2-large-598e22e4a03d2986af56203bd443d9f6318959f51cb0006fb620c25f9c405034.png);
  }
}

.bg-hero-gradient {
  background-image: url(/assets/home/gradient-background-698c53671aa459988235a4292ca53e7f268874dc13fd1b1f256b6deadcd0e6e0.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;

  @media (min-width: 1440px) {
    background-image: url(/assets/home/gradient-background2-1dc73383058fdb6d85ce79e2fc294a7d20fe46390bfd89ce6eca6940792cf3ca.svg);
  }

  @media (min-width: 1512px) {
    background-image: url(/assets/home/gradient-background3-bdbb6fa42b5a130a09d751b0099fddc9b69083345dfda98f23f5a0c0945d92d7.svg);
  }

  @media (min-width: 1920px) {
    background-image: url(/assets/home/gradient-background4-579ddf165fc59f2a4929343b763726f8c2977cc51f630b2716ac360f30b2a389.svg);
  }

  @media (min-width: 1921px) {
    background-image: url(/assets/home/gradient-background5-897b31c194f1a0cbc5518d064583fa51014105d3794940e0d266c846c529810a.svg);
    background-position: 94% 20px;
  }
}

.disable-scrollbars::-webkit-scrollbar {
  background: transparent; /* Chrome/Safari/Webkit */
  width: 0px;
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

[data-toggle-is-accordion-open-value="true"] .accordion-inactive-icon {
  display: inline-block;
}

[data-toggle-is-accordion-open-value="true"] .accordion-active-icon {
  display: none;
}

[data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: #9D9D9D;
  pointer-events: none;
}

.no-selection ::selection {
  background: transparent;
  color: inherit;
}

.no-selection::selection {
  background: transparent;
  color: inherit;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #B6B6B6;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15.5px;
  width: 15.5px;
  left: -4px;
  bottom: -1.5px;
  background-color: white;
  border: 2px solid #B6B6B6;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: 1;
}

input:checked + .slider:before {
  border: 2px solid #232323;
  background-color: #232323;
}

input:checked + .slider {
  border: 2px solid #232323;
}

input:focus + .slider:before {
  border: 2px solid #B6B6B6;
}

input:focus + .slider {
  border: 2px solid #B6B6B6;
}

input:checked:focus + .slider:before {
  border: 2px solid #232323;
}

input:checked:focus + .slider {
  border: 2px solid #232323;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 14px;
}

.slider.round:before {
  border-radius: 50%;
}

.finalists-scores .title,
.finalists-scores .score{
  color: #232323;
}

.filled-star,
.filled-star path,
.filled-star svg path {
  stroke: #00E3FF;
  fill: #00E3FF;
  color: #00E3FF;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
