input {
  resize:both;
  font-family: 'Open Sans', sans-serif;
}

h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 10px 0 10px;
    color: #3190c8;
    text-transform: none
}

h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 10px 0 10px;
    color: #1b5897;
    text-transform: none
}

h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 10px 0 10px;
    color: #515151;
    text-transform: none
}

h4 {
    font-family: "Open Sans", sans=serif;
    font-weight: 600;
    margin: 3px 0 10px;
    color: #000000;
    text-transform: none
}

h5 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 3px 0 10px;
    color: #1b5897;
    text-transform: none
}

h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    margin: 3px 0 10px;
    color: #000000;
    text-transform: none
}

p, form, input, textarea, a, option, select, div, b {
    font-family: "Open Sans", sans-serif;
}

textarea {
    height: 1.5em;
}

a {
    color: #3190c8;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.fake-link {
    color: #3190c8;
    cursor: pointer;
}

.fake-link:hover {
    text-decoration: underline;
}


a:hover {
    color: #1b5897;
    text-decoration: underline;
}

div#loading {
    width: 35px;
    height: 35px;
    display: none;
    background: url(ajax-loader.gif) no-repeat;
    cursor: wait;
}


.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.btn, .btn-default, .btn-primary, .btn-info {
    background-color: #3190c8;
    font-family: 'Open Sans', sans-serif;
}

.btn:hover, .btn-default:hover, .btn-primary:hover, .btn-info:hover {
    background-color: #1b5897;!important
    font-family: 'Open Sans', sans-serif;
}

.btn-danger {
    background-color:#eb4034;
}

.justify-content-center {
    justify-content: center;
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-text{
    position: fixed;
    bottom:0;
    font-size:0.7em;
}

#tooltip {
        background: #333;
        color: white;
        font-weight: bold;
        padding: 4px 8px;
        font-size: 13px;
        border-radius: 4px;
        display:none;
}

#tooltip[data-show] {
  display: block;
}

#arrow,
#arrow::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}

#arrow {
  visibility: hidden;
}

#arrow::before {
  visibility: visible;
  content: '';
  transform: rotate(45deg);
}

#tooltip[data-popper-placement^='top'] > #arrow {
  bottom: -4px;
}

#tooltip[data-popper-placement^='bottom'] > #arrow {
  top: -4px;
}

#tooltip[data-popper-placement^='left'] > #arrow {
  right: -4px;
}

#tooltip[data-popper-placement^='right'] > #arrow {
  left: -4px;
}

.infobtn {
  /* Since your button is a block button, otherwise use inline-flex */
  display: flex;
  align-items: center;
  justify-content: center;
  justify: center;
}

.glowy-box{
    animation: glow-box 0.9s ease-in-out infinite;
    transition: 0.1s;
}

.glowy-text{
    animation: glow-text 0.9s ease-in-out infinite;
    transition: 0.1s;
}

@keyframes glow-box {
    0% {
        box-shadow: 0 0 0 1px rgb(0 0 0 / 20%);
    }
    50% {
        box-shadow: 0 0 15px rgba(13, 250, 52, 1);
    }
    100%{
        box-shadow: 0 0 0 0px rgb(0 0 0 / 00%);
    }

}

@keyframes glow-text {
    0% {
        text-shadow: 0 0 0 1px rgb(0 0 0 / 20%);
        color: black;
    }
    50% {
        text-shadow: 0 0 10px rgba(13, 350, 52, 1);
        color: rgb(13, 350, 52);
    }
    100%{
        text-shadow: 0 0 0 0px rgb(0 0 0 / 0%);
        color: black;
    }

}


.watermark:after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  background: url('../static/Cirrus logo large.png');
  background-repeat: no-repeat;
  background-position: right 30% bottom 75%;
  opacity: 0.2;
  z-index: -1;
 }


.question_wrapper {
  border: solid #3190c8;
  border-radius: 25px;
  padding: 15px 10px 10px;
  width: 100%;
}

.question_wrapper .question_header {
  position:absolute;
  margin-top:-30px;
  margin-left:10px;
  color:white;
  background:#3190c8;
  border-radius:10px;
  padding:2px 10px;
}

a.trial-disabled{
    cursor:default;
}

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

/* Tooltip text */
.trial-disabled .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.trial-disabled .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.trial-disabled:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.material-icon-tooltip {
    font-size:32px;
}