@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

/* space between header and status bar */
body .top-container {
    margin-top: 10px !important;
}
.bg-primary {
    color: #ffffff;
    background-color: #b4b9ab;
}
.navbar-default {
    background-color: #ffffff !important;
    border-color: transparent !important;
    display: grid;
    place-items: center;
}
.progress {
    background-color: #35BEB5;
}
.progress-bar {
    /* Hide the text. */
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-color: #133243;
}
.top-container .progress {
    height: 15px;
    margin-bottom: 0;
}
.btn-primary {
    background-color: #133243;
    border-color: #133243;
}
.btn-primary:hover {
    color: #fff;
    background-color: #b4b9ab;
    border-color: #b4b9ab;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    color: #fff;
    background-color: #35BEB5 !important;
    border-color: #35BEB5 !important;
}
.alert-warning {
    background-color: #feba17;
    border-color: #feba17;
}
.text-info {
    color: #35beb5;
}
.question-container {
    color: #000;
}
.text-muted {
    color: #133243;
}
body {
    font-family: "Raleway", sans-serif !important;
    font-size: 16px;
}
.answer-container {
    border-color: #fff;
}
.question-container {
    border-bottom: #fff;
}
.asterisk {display: none;}
.text-primary li {
    line-height: 1.5;
}
.panel-primary {
    border-color: #35BEB5;
}
.panel-primary > .panel-heading {
    background-color: #35BEB5;
    border-color: #35BEB5;
}
a {
    color: #35BEB5;
}
a:hover, a:focus {
    color: #133243;
}
body {
     padding-bottom: 0; /* no bottom padding, footer should be bottom aligned */
     padding-top: 60px;/* now is redefine in JS to fit any title length */
     flex-direction: column; /* article, then footer */
     display: flex; /* flex, to extend the content to full size */
     min-height: 100vh; /* full height, to bottom-align footer */
}
body > article {
    flex: 1; /* the main article should use as much space as possible */
}
ls-answers answer-item dropdown-item form-group {
    width: auto;
}
.form-inline .bootstrap-select, .form-inline .bootstrap-select.form-control:not([class*=col-]) {
    width: auto !important;
}

.panel-integration {
    height: 0 !important;
    visibility: hidden !important;
    font-size: 18px;
}

.question-help-container {
    border-style: none;
}

.table {
    hyphens: none;
}

/* (C) NO SELECT + HIGHLIGHT COLOR */
* { user-select: none; }
*::selection { background: none; }
*::-moz-selection { background: none; }

/* Tooltip container */
.resume-tip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.resume-tip .resume-tip-text {
  visibility: hidden;
  width: 200px;
  background-color: #131C25;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
  font-size: 75%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.resume-tip:hover .resume-tip-text {
  visibility: visible;
}