.radio-label {
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
    font-weight: normal;
    }
    
    .radio-pillbox {
    color: #333333de;
    height: 40px;
    width: 100%;
    font-size: 1em;
    border: 0;
    border-radius: 75px;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    user-select: none;
    }
    
    .radio-pillbox radiogroup {
    height: 100%;
    width: 100%;
    display: flex;
    }
    
    .radio-pillbox radiogroup div {
    width: 100%;
    position: relative;
    }
    
    .radio-pillbox radiogroup div input {
    -webkit-appearance: inherit;
    width: 100%;
    height: 100%;
    transition: background 300ms ease-out;
    margin: 0;
    outline: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .radio-pillbox radiogroup div input:checked {
    border: none;
    background-color: aliceblue;
    }
    
    .radio-pillbox radiogroup .first {
    border-radius: 75px 0 0 75px;
    border-left: none;
    }
    
    .radio-pillbox radiogroup .last { border-radius: 0 75px 75px 0; }
    
    .radio-pillbox radiogroup div label {
    position: absolute;
    top: 50%;
    line-height: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    }
    
    .radio-pillbox input:focus { outline: 0; }
    
    .radio-pillbox label:after {
    content: "\2714";
    display: inline-block;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms,  -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -moz-transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms,  -moz-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms,  -o-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms,  transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    }
    
    .radio-pillbox input:checked + label:after {
    margin-left: 12px;
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -o-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transition: -webkit-transform 500ms  cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms,  margin 500ms,  -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
    -moz-transition: -moz-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275)  250ms,  margin 500ms,  -moz-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
    -o-transition: -o-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275)  250ms,  margin 500ms,  -o-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
    transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms,  margin 500ms, transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
    }    

    
    p.info {
        text-align:justify;
    }

    .criteria th, .criteria td{
        text-align:center;
    }

    td.bold {
        font-weight:bold;
    }

    .popover-content {
        color:#777777;
    }

    .css-spinner {
        margin: 20px 60px;
        display: block;
        text-align: center;
    }

    .lds-ring {
        display: inline-block;
        position: relative;
        width: 64px;
        height: 64px;
      }
      .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 51px;
        height: 51px;
        margin: 6px;
        border: 6px solid #006FAD;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #006FAD 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);
        }
      }