@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --foreground-rgb: 0, 0, 0, .75;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255, .75;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

@media (width <=650px) {
  body {
    font-size: 12px !important;
  }
}

body {
  font-size: 14px;
  /* color: rgb(var(--foreground-rgb)); */
  color: #333;
  background: linear-gradient(to bottom,
      transparent,
      rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}

/* Hide scrollbar for Chrome, Safari and Opera */
.overflow-scroll::-webkit-scrollbar,
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.overflow-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}


h1 {
  font-size: 2rem;
  font-weight: 600;
}

h2 {
  font-size: 1.5rem;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* https://images.unsplash.com/photo-1580894732444-8ecded7900cd?q=80&w=3270&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D */
.hero-bg {
  position: relative;
  /* background: linear-gradient(90deg, rgba(3, 45, 96, 1) 50%, rgba(255, 255, 255, 0) 160%); */
}

.hero-bg:before {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* background-image: url('https://images.unsplash.com/photo-1580894732444-8ecded7900cd?q=80&w=3270&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.gradient-alt-0,
.gradient-basic {
  background: linear-gradient(180deg, rgba(215, 255, 224, 1) 0%, rgba(255, 255, 255, 1) 40%);
}

.gradient-alt-1,
.gradient-standart {
  background: linear-gradient(180deg, rgba(215, 248, 255, 1) 0%, rgba(255, 255, 255, 1) 40%);
}

.gradient-alt-2,
.gradient-premium {
  background: linear-gradient(180deg, rgba(255, 251, 215, 1) 0%, rgba(255, 255, 255, 1) 40%);
}

.content ol,
.content ul,
.custom-list ul {
  padding-left: 18px;
}

.content p {
  margin-bottom: 12px;
  line-height: 24px;
}

.content li p {
  margin-bottom: 4px;
}

.content ol li,
.content ul li,
.custom-list ul li {
  list-style-type: disc;
}

.content.faq h2{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.flex.min-h-screen {
  min-height: calc(100vh - 310px) !important;
}