/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
  :root {
    --bg: rgb(96%, 96%, 100%);
    --bglight: rgb(99%, 99%, 100%);
    --fg: rgb(2%, 4%, 8%);
    --light: rgba(10%, 20%, 50%, 0.5);
    --medium: rgb(10%, 20%, 50%);
    --dark: rgb(5%, 10%, 25%);
    --verydark: rgb(2.5%, 5%, 12.5%);
    --highlight:  rgba(100%, 77%, 0%, 0.2);
    font-family: "Meiryo", sans-serif;
    --bs-body-font-size: 110%;
    --bs-info-rgb: 10%, 20%, 50%;
    --bs-body-color: var(--fg);
    --bs-body-bg: var(--bg);
  }
  
  .survey-name {
    color: var(--medium);
    filter: drop-shadow(2px 2px 2px gray)

  }
  
  .question-text {
    font-size: 120%;
    color: var(--medium);
    filter: drop-shadow(2px 2px 2px gray);
    /* border-bottom: 1px solid var(--medium); */
  }
  
  .question-container {
    border: none;
    background-color: var(--bglight);
    margin-bottom: 2em;
  }
  
  a {
    text-decoration: underline;
  }
  a:link {
    color: var(--medium);
  }

  a:visited {
    color: var(--light);
  }

  a:hover, strong {
    background: var(--highlight);
  }
  
  .group-title {
    font-size: 200%;
    /* Define heading bar */
    color: var(--bg);
    background: linear-gradient(0deg, var(--dark), var(--medium));
    box-shadow: .5em .5em 1em gray;
    padding-left: 1em;
    padding-top: .1em;
    padding-bottom: .1em;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
      
  }

  .well {
    background: var(--bglight);
  }

  li.radio-item {
    margin-bottom: 0em;
  }
  
  .space-col {
      margin-top: .5em;
      margin-bottom: 1em;
  }
  
  }