/* [project]/app/globals.css [app-client] (css) */
:root {
  --color-primary: #fa1d40;
  --color-blue: #1354ea;
  --color-violet: #a77fed;
}

@font-face {
  font-family: SharpGrotesk20-Book;
  src: url("/fonts/SharpGrotesk-Book20.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: SharpGrotesk25-Book;
  src: url("/fonts/SharpGrotesk-Book25.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: SharpGrotesk20-Bold;
  src: url("/fonts/SharpGrotesk-Bold20.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: SharpGrotesk20-SemiBold;
  src: url("/fonts/SharpGrotesk-SemiBold20.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: SharpGrotesk25-SemiBold;
  src: url("/fonts/SharpGrotesk-SemiBold25.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: SharpGrotesk20-LightItalic;
  src: url("/fonts/SharpGrotesk-LightItalic20.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  color: #000;
  background: #010723;
  font-family: SharpGrotesk20-Book;
  font-size: 16px;
  line-height: 1.2;
}

label {
  display: block;
}

h1 {
  color: var(--color-primary);
  margin-top: 20px;
  font-family: SharpGrotesk25-SemiBold;
  font-size: 24px;
  line-height: 1.2;
}

.ScreenBackground {
  z-index: -2;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
}

.ScreenBackgroundBlur {
  z-index: -1;
  backdrop-filter: blur(12px);
  pointer-events: none;
  background-color: #0003;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.ScreenBackgroundVideo {
  width: 100%;
}

.FunctionPage {
  background-color: #eee;
  width: 100%;
  padding-left: 16px;
}

.FunctionButton {
  background-color: #ccc;
  padding-left: 5px;
  padding-right: 5px;
  font-family: SharpGrotesk20-Book;
}

.FunctionButton:hover {
  font-family: SharpGrotesk20-SemiBold;
}

.FunctionButton:disabled {
  color: #888;
  background-color: #ccc;
  padding-left: 5px;
  padding-right: 5px;
  font-family: SharpGrotesk20-Book;
}

.Widget {
  color: #fff;
  background-color: #202020;
  border-radius: 8px;
  margin: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px #0003;
}

.Widget > div {
  margin-bottom: 12px;
}

.AlignWidget {
  margin-left: 16px;
}

.WidgetHeadline {
  margin-bottom: 10px;
  font-family: SharpGrotesk20-SemiBold;
  font-size: 18px;
  display: block;
}

.WidgetAnnotation {
  margin-bottom: 8px;
  font-family: SharpGrotesk20-LightItalic;
  font-size: 14px;
  display: block;
}

.Widget input[type="radio"], .Widget input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
  margin-right: 12px;
}

.Widget textarea {
  color: #222;
}

.Widget textarea::placeholder {
  color: #888;
}

.SubmitButton {
  background-color: var(--color-blue);
  color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  margin-left: 16px;
  padding: 16px;
  font-family: SharpGrotesk20-Bold;
  font-size: 20px;
}

.SubmitButton:hover {
  color: var(--color-primary);
  background-color: #888;
}

.poll-table {
  border-collapse: collapse;
  width: 100%;
}

.poll-table th, .poll-table td {
  text-align: left;
  white-space: normal;
  text-overflow: ellipsis;
  vertical-align: top;
  border: 3px solid #fff;
  padding: 4px 8px;
  overflow: hidden;
}

.poll-table tr:hover {
  transition: background .2s;
  background-color: #ffe066 !important;
}

.cell-clamp {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  -webkit-box-orient: vertical;
  max-width: 200px;
  display: -webkit-box;
  overflow: hidden;
}

.name-cell, .firstname-cell, .email-cell {
  word-break: normal;
  overflow-wrap: normal;
}

.DisplayWidget {
  color: #333;
  background-color: #fff;
  border-radius: 8px;
  margin: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px #0003;
}

h2, .DisplayWidget h2 {
  color: var(--color-violet);
  margin-top: 20px;
  font-family: SharpGrotesk20-Bold;
  font-size: 24px;
  line-height: 1.2;
}

h3, .DisplayWidget h3 {
  color: #fff;
  margin-top: 20px;
  font-family: SharpGrotesk20-Book;
  font-size: 24px;
  line-height: 1.2;
}


/*# sourceMappingURL=app_globals_73c37791.css.map*/