/** Heatmap Styles **/

.heatbar-container {
  width: 100%;
  max-width: 500px;
  overflow: visible;
  margin: 1px 5px 25px 5px;
}

.heatbar {
  position: relative;
  height: 20px;
  background: linear-gradient(90deg,rgba(0, 170, 0, 1) 0%, rgba(170, 0, 0, 1) 100%);
  border-radius: 5px;
  overflow: visible;
}

/* Long bar for the actual probability */
.probability-bar {
  position: absolute;
  height: 100%;
}

/* CI range vertical line */
.ci-line {
  background-color: lightgray;
  position: absolute;
  top: 8px;
  height: 15%;
  pointer-events: none;
}

/* Small vertical ticks for CI lower and upper */
.ci-tick {
  position: absolute;
  top: 5px;
  width: 2px;
  height: 8px;
  background-color: lightgray;
}

.p-tick {
  position: absolute;
  top: 0;
  width: 2px;
  height: 20px;
  background-color: white;
}

.p-label {
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  font-size: 18px;
  white-space: nowrap;
  text-align: center;
  color: #333;
  background: darkgray;
  padding: 2px 4px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  z-index: 30;
}
.ci-label {
  position: absolute;
  top: 22px;
  transform: translateX(-50%);
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  color: #333;
  background: lightgray;
  padding: 2px 4px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  z-index: 10;
}
/** /Heatmap Styles **/
.GTmodal {
  display: flex; justify-content: center; align-items: center;
  flex-direction: row;
  position: fixed;
  z-index: 4200;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.GTmodal.hidden {
  display: none;
}
.GTmodal.GTerror > .GTmodal-content{
  border: 3px solid red;
}
.GTmodal.GTnote > .GTmodal-content{
  border: 3px solid green;
}
.GTmodal-content {
  display: flex; justify-content: center; align-items: center;
  flex-direction: column;
  background: white;
  padding: 0 20px 20px 20px;
  border-radius: 8px;
  min-width: 300px;
  text-align: center;
}
.GTclose-btn {
  align-self: flex-end;
  flex: 1;
  width: 100%;
  text-align: right;
  font-size: 24px;
  cursor: pointer;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS 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/SCSS
 * 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.
 *



 */

/* 
.btn-gm {
    background-color: #CE5328;
    color: #FFF;
}

.btn-gm:hover,
.btn-gm:focus,
.btn-gm:active,
.btn-gm.active,
.open .dropdown-toggle.btn-gm {
    background-color: #F0612F;
    color: #FFF;
} */

/* body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--body);
  } */

/*
@import "bootstrap-sprockets";
@import "bootstrap";
*/

/** checkboxes **/
.fancyCheckBoxFrame {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

:root {
    --body: #fafafa;
    --text-default: #1d1d1f;
    --text-secondary: #86868b;
}


/* Checkbox Styles */
.fancyCheckBox {
    background-color: #fafafa;
    transform: scale(0.25);
    margin-top: -20px;
    -webkit-appearance: none;
    outline: none;
    /* position: absolute; */
    height: 5rem;
    width: 10rem;
    border: 5px solid #CE5328;
    /* var(--body); */
    border-radius: 2.5rem;
    cursor: pointer;
    box-shadow: 9px 9px 16px rgba(189, 189, 189, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5), inset 10px 10px 15px -10px #c3c3c3, inset -10px -10px 15px -10px #fff;
    line-height: 24px !important;
    /* Toggle Indicator */
    /* Label */
    /* Checked Styles */
}

@media (min-width: 768px) {
    .fancyCheckBox {
        transform: scale(0.5) !important;
    }
}

.fancyCheckBox:disabled {
    opacity: 0.4;
    border: 5px solid #666;
}

.fancyCheckBox::before {
    content: "";
    height: 3.125rem;
    width: 3.125rem;
    background-color: var(--body);
    position: absolute;
    margin: auto;
    top: 0;
    left: 0.9375rem;
    bottom: 0;
    border-radius: 50%;
    box-shadow: 7px 7px 15px #c3c3c3, 9px 9px 16px rgba(189, 189, 189, 0.6);
    transition: 0.15s;
}

.fancyCheckBox::after {
    content: "Off";
    position: absolute;
    font-size: 1.625rem;
    top: 1.25rem;
    right: 1.5625rem;
    color: var(--text-secondary);
    font-family: "SF Pro Text", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    letter-spacing: 0.004em;
}

.fancyCheckBox:checked {
    background: lightgreen !important;
}

.fancyCheckBox:checked::before {
    left: 5.3125rem;
    box-shadow: 7px 7px 15px #00c300, 9px 9px 16px rgba(189, 189, 189, 0.6);
}

.fancyCheckBox:checked::after {
    content: "On";
    left: 1.5625rem;
    color: black;
}

[lang="de"] .fancyCheckBox.JaNein::after {
    content: "Nein";
}

[lang="de"] .fancyCheckBox.JaNein:checked::after {
    content: "Ja";
}

[lang="en"] .fancyCheckBox.JaNein::after {
    content: "No";
}

[lang="en"] .fancyCheckBox.JaNein:checked::after {
    content: "Yes";
}

.nomargin {
    margin: 0 0 !important;
}

/** /checkboxes **/
/* line 1, app/assets/stylesheets/help_center.scss */
:root {
  --brand: #CE5328;
  --brand-strong: #A84320;
  --brand-bg: rgba(206,83,40,.10);
}

/* line 7, app/assets/stylesheets/help_center.scss */
.help-hero {
  background: #ffdbbb;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  margin-bottom: 28px;
}

/* line 14, app/assets/stylesheets/help_center.scss */
.help-hero h1 {
  color: var(--brand-strong);
}

/* line 15, app/assets/stylesheets/help_center.scss */
.searchbar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

/* line 18, app/assets/stylesheets/help_center.scss */
.searchbar input {
  width: 92%;
  max-width: 720px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--brand-bg);
  padding: 0 16px;
  font-size: 16px;
}

/* line 27, app/assets/stylesheets/help_center.scss */
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* line 31, app/assets/stylesheets/help_center.scss */
.card {
  border: 1px solid #e8edf7;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  transition: box-shadow .2s ease, transform .06s ease;
}

/* line 35, app/assets/stylesheets/help_center.scss */
.card:hover {
  box-shadow: 0 8px 24px rgba(20, 30, 70, 0.08);
  transform: translateY(-1px);
}

/* line 36, app/assets/stylesheets/help_center.scss */
.card h3 {
  color: #CE5328;
  margin: 6px 0 8px;
  font-size: 18px;
}

/* line 37, app/assets/stylesheets/help_center.scss */
.card p {
  color: #ff9f43;
  margin: 0;
  font-size: 14px;
}

/* line 38, app/assets/stylesheets/help_center.scss */
.breadcrumbs {
  color: #5b6a84;
}

/* line 39, app/assets/stylesheets/help_center.scss */
.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
}

/* line 40, app/assets/stylesheets/help_center.scss */
.breadcrumbs a:hover {
  color: var(--brand-strong);
  text-decoration: underline;
}

/* line 42, app/assets/stylesheets/help_center.scss */
.card:hover {
  box-shadow: 0 8px 24px rgba(20, 30, 70, 0.08);
  transform: translateY(-1px);
  border-color: var(--brand-bg);
}

/* line 44, app/assets/stylesheets/help_center.scss */
.tag {
  background: var(--brand-bg);
  color: var(--brand);
}

/* line 48, app/assets/stylesheets/help_center.scss */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

/* line 51, app/assets/stylesheets/help_center.scss */
.list li a {
  color: #223;
}

/* line 52, app/assets/stylesheets/help_center.scss */
.list li a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* line 55, app/assets/stylesheets/help_center.scss */
.article {
  max-width: 860px;
  margin: 0 auto;
}

/* line 56, app/assets/stylesheets/help_center.scss */
.article h1 {
  font-size: 28px;
  margin: 8px 0 16px;
}

/* line 57, app/assets/stylesheets/help_center.scss */
.article-body {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
}

/* line 65, app/assets/stylesheets/help_center.scss */
.article-body a {
  color: #CE5328;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 70, app/assets/stylesheets/help_center.scss */
.article-body a:hover,
.article-body a:focus {
  color: #A84320;
}

/* line 74, app/assets/stylesheets/help_center.scss */
.article-body a:visited {
  color: #ff9f43;
}

/* line 78, app/assets/stylesheets/help_center.scss */
.text-accent {
  color: #CE5328;
}

/* line 80, app/assets/stylesheets/help_center.scss */
.article .prose p {
  line-height: 1.7;
  color: #243049;
}

/* line 81, app/assets/stylesheets/help_center.scss */
.avatar_web {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/* line 87, app/assets/stylesheets/help_center.scss */
.avatar_app {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
}

/* line 93, app/assets/stylesheets/help_center.scss */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef3ff;
  color: #ff9f43;
}

/* line 94, app/assets/stylesheets/help_center.scss */
.top-articles {
  padding: 16px;
  background: #f5f8ff;
  border-radius: 16px;
}

/* line 95, app/assets/stylesheets/help_center.scss */
.small {
  font-size: 13px;
  color: #6b7893;
}

/* line 96, app/assets/stylesheets/help_center.scss */
.icon {
  font-size: 26px;
}

/* line 98, app/assets/stylesheets/help_center.scss */
.grid {
  display: grid;
  gap: 16px;
}

/* line 100, app/assets/stylesheets/help_center.scss */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  /* line 101, app/assets/stylesheets/help_center.scss */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  /* line 102, app/assets/stylesheets/help_center.scss */
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* line 105, app/assets/stylesheets/help_center.scss */
.video {
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

/* line 111, app/assets/stylesheets/help_center.scss */
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* line 119, app/assets/stylesheets/help_center.scss */
.video--sm {
  max-width: 640px;
  margin: 0 auto;
}

/* small device */
/* line 120, app/assets/stylesheets/help_center.scss */
.video--md {
  max-width: 800px;
  margin: 0 auto;
}

/* medium device */
