h4 {
    font-size: 1rem;
}
h5 {
    font-size: 0.8rem;
}
.progress{
    height: 16px;
}
#access iframe{
    width: 100%;
}

.totalscore{
    text-align: center;
}
.totalscore p{
    font-size: 7rem;
    font-weight: bold;
}
.allscore{
    text-align: center;
}
.allscore p{
    font-size: 7rem;
    font-weight: bold;
}

.bottom-menu a{
    background-color: grey;
    font-size: smaller;
    color: white;
}

.item-panel{
    width: 100%;
    height: 2.5rem;
    text-align:center;
}
.item-panel a{
    color: gray;
}

.card{margin-bottom:.75rem}

.card-img-top{
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width:576px){
    .card-columns{
        -webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;
        -moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1
    }

    .card-columns .card{
    display:inline-block;width:100%
    }
}


  .control {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    margin-right: 1rem;
    cursor: pointer;
  }
  .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
  }
  .control--radio .control__indicator {
    border-radius: 50%;
  }
  .control:hover input ~ .control__indicator,
  .control input:focus ~ .control__indicator {
    background: #ccc;
  }
  .control input:checked ~ .control__indicator {
    background: #2aa1c0;
  }
  .control:hover input:not([disabled]):checked ~ .control__indicator,
  .control input:checked:focus ~ .control__indicator {
    background: #0e647d;
  }
  .control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
  }
  .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
  }
  .control input:checked ~ .control__indicator:after {
    display: block;
  }
  .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
  }
  .control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
  }
  .control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
  }
  .select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
  }
  .select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #e6e6e6;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .select select::-ms-expand {
    display: none;
  }
  .select select:hover,
  .select select:focus {
    color: #000;
    background: #ccc;
  }
  .select select:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  .select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
  }
  .select select:hover ~ .select__arrow,
  .select select:focus ~ .select__arrow {
    border-top-color: #000;
  }
  .select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
  }