:root {
  --body-bg: #f5f4f2;
  --max-width: 1100px;
  --border-radius: 12px;
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 235;
  --background-end-rgb: 255, 255, 255;
  --nav-backround: 238 234 229;
  --light-text: 0, 0, 0;
  --dark-gray: 0, 0, 0, 87%;
  --input-border: 0, 0, 0, 0.23;
  --logo-filter: invert(0)
}

@media (prefers-color-scheme:dark) {
  :root {
    --max-width: 1100px;
    --border-radius: 12px;
    --foreground-rgb: 0, 0, 0;
    --background-start-rgb: 214, 219, 235;
    --background-end-rgb: 255, 255, 255;
    --nav-backround: 238 234 229;
    --light-text: 0, 0, 0;
    --dark-gray: 0, 0, 0, 87%;
    --input-border: 0, 0, 0, 0.23;
    --logo-filter: invert(0)
  }
}

.d-flex {
  display: flex
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center
}

.flex-align-end {
  display: flex;
  align-items: flex-end
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.flex-items-center {
  display: flex;
  align-items: center
}

.flex-justify-between {
  display: flex;
  justify-content: space-between
}

.flex-column {
  display: flex;
  flex-direction: column
}

.min-height-100vh {
  min-height: 100vh
}

.flex-justify-center {
  display: flex;
  justify-content: center
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap
}

.cursor-pointer {
  cursor: pointer
}

.text-center {
  text-align: center
}

.w-100 {
  width: 100%
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.square {
  aspect-ratio: 1
}

.absolute {
  position: absolute
}

.left-0 {
  left: 0
}

.top-0 {
  top: 0
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0
}

.overflow-hidden {
  overflow: hidden
}

html {
  font-size: 15px;
  -webkit-tap-highlight-color: rgb(0 0 0 / .1)
}

html,
body {
  max-width: 100vw
}

body {
  color: rgb(var(--foreground-rgb));
  background-color: var(--body-bg);
  padding: 0 !important;
  font-family: 'Lora'
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid #000;
  padding: 10px
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 35s linear infinite
}

.marquee-content:hover {
  animation-play-state: paused
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

@media screen and (max-width:600px) {
  .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite
  }
}

a {
  color: inherit;
  text-decoration: none
}

*::-webkit-scrollbar {
  width: 8px
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / .3)
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(209 209 209 / .903)
}

@media print {

  .MuiDrawer-root.MuiDrawer-docked,
  .MuiToolbar-root {
    display: none
  }
}