/* Just makin' it look nice. */
body {
    background: #00AF8C;
    font-family: 'Open Sans',Arial, Verdana, serif;
    font-size: 16px;
    min-height: 100vh;
  }
.btn-bk a{
  background: #198754;
  height: 75px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.btn-bk a:hover, .btn-bk a:focus, .btn-bk a:active {
  background: #157347;
}

  .hide {
    display: none;
  }
  .conditional {
    margin: 1em 0 0.5em;
    border-top: 2px dotted #eee;
    padding-top: 1em;
    color: rgba(0,0,0,.7);
  }
  body a{
    color: #00AF8C; 
  }
  
  #demo {
    padding: 1.5em 1.5em;
    background: #fff;

    margin: 2em auto;
    border-radius: .5em;
    
  }
  #summary {
    padding: 1.5em 3em;
    background: #fff;
    width: 60vw;
    margin: 2em auto;
    border-radius: .5em;
  }
  label {
    vertical-align: middle;
    position: relative;
  }
  .text-center {
    text-align: center;
  }
  
  input + span{
      position: absolute;
      left: 0;
      top: 1px;
      width: 15px;
      height: 15px;
    border: 2px solid #00AF8C;
  }
  
  input[type=radio] + span {
    border-radius: 50%;
    margin-top: 3px;
  }
  input[type=checkbox] + span {
    margin-top: 3px;
  }
  
  input[type=radio]:checked + span {
    background: #00AF8C;
    background: -moz-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(44%, rgba(106,181,169,1)), color-stop(45%, rgba(255,255,255,1)), color-stop(46%, rgba(255,255,255,1)), color-stop(55%, rgba(255,255,255,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
    background: -o-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
    background: radial-gradient(ellipse at center, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6ab5a9', endColorstr='#ffffff', GradientType=1 );
  }
  
  input[type=checkbox]:checked + span:after {
    content: "\00d7";
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 0px;
    font-size: 20px;
    color: #00AF8C;
  }
   
  input[type=radio],
  input[type=checkbox] {
      /*hide the radio button*/
      filter:alpha(opacity=0);
      -moz-opacity:0;
      -khtml-opacity: 0;
      opacity: 0;
      margin-left: 0.3rem;
  }
  
  select,
  .title-selector,
  input[type=text],
  input[type=date] {
    border-radius: 5px;
    padding: 6px 10px;
    border: 2px solid #9fc7c0;
    font-color: #666;
    font-size: 15px;
  }
  .mgn-l-5{
    margin-left: 5px;
  }
  .small-text{
    font-size: small;
    padding-left: 10px;
    margin: 0;
  }
  .next-button{
    width: 130px;
    height: 45px;
    margin-left: auto;
    margin-right: 0;
    font-size: large;
  }
  .off-color{
    color:rgb(242,242,242);
  }
  .heading-text{
    font-size: 28px;
    color: #00AF8C;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .sub-hedding{
    font-weight: bold;
    margin-bottom: 1.2rem;
  }
  .label-indent{
    margin-bottom: 0.7rem;
    margin-left: 1rem;
  }
  .mt-rem-2-5{
    margin-top: 2.5rem;
  }
  .button-right{
    height: 45px;
    margin-left: auto;
    margin-right: 0;
    font-size: large;
  }
  .button-left{
    height: 45px;
    margin-left: 0;
    margin-right: auto;
    font-size: large;
  }
  .input-error{
    border: 2px solid #c34040 !important;
  }

  .button-row > button{
      max-width: 180px;
  }

  #loadingSpinner {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #00af8c;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #00af8c transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .lds-ring.hide {
    display: none !important;
  }

  @media (max-width:540px) {
    .button-row > button{
      max-width: unset;
      margin-bottom: 5px;
    }
    #summary {
      padding: 1.5em 3em;
    background: #fff;
    width: 90vw;
    margin: 2em auto;
    border-radius: .5em;
    }
  }
