@import "tailwindcss";


:root {
  --background: #ffffff;
  --foreground: #171717;
}

@theme inline {
  --breakpoint-xs: 30rem;
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
  --color-primary: #04B47D;
  --color-gray: #424242;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: #fbfbfb;
  color: #373737;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.scroll_bar::-webkit-scrollbar{
  width: 6px;
}

.scroll_bar::-webkit-scrollbar-thumb{
  border-radius: 3px;
  background: transparent;
}
.scroll_bar:hover::-webkit-scrollbar-thumb{
  background: #dbdbdb;
}

.embla.review_carousel{
  overflow: hidden;
}
.review_carousel .embla__container {
  display: flex;
}
.review_carousel .embla__slide{
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.embla__controls .embla__dots{
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 25px;
}
.embla__controls .embla__dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}
.embla__controls .embla__dot.embla__dot--selected{
  background: rgba(255, 255, 255, 1);
}

.glob_table{
  min-width: 1000px;
  width: 100%;
  text-align: left;
}
.glob_table tbody{
  background: #fff;
}

.glob_table tbody tr{
  border: 1px solid transparent;
  border-bottom: 1px solid #E6E6E6;
}
.glob_table tbody tr:hover,
.glob_table tbody tr.active{
  border: 1px solid #E6E6E6;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
}
.glob_table thead{
  background: #ECEFF6;
}
.glob_table th{
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #373737;
  padding: 12px 12px;
  border: 1px solid #DEDEDE;
}
.glob_table td{
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #575757;
  padding: 20px 12px;
  border: 1px solid #DEDEDE;
}

@media(max-width: 1200px){
  .glob_table th{
    font-size: 13px;
  }
  .glob_table td{
    font-size: 12px;
  }
}
