.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.bubble {
  background: red;
  color: white;
  padding: 4px 12px;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.fittnessTest{

}
.fittnessTest .section_body.hidden{
  overflow: hidden;
  transition: all .5s ease;
  max-height: 0px;
}
.fittnessTest .section_body{
  height: auto;
  max-height: 1000px;
  overflow: hidden;
  transition: all 1.8s ease;
}


.fittnessTest .pass , .fittnessTest .fail{
  display: none;
  text-align: center;
  padding:10px;
}
.fittnessTest .pass {
  border:1px solid #4CAF50;
}
.fittnessTest .fail {
  border:1px solid #ad2a2a;
}
.fittnessTest .show{
  display: block;
}

.fittnessTest .section_head{
  font-weight:bold;
  border-bottom: 1px solid gray;
  cursor:pointer;
  margin-top: 10px;
  padding-bottom: 10px;
}

.fittnessTest .section_head::after{
    content: '';
    width: 20px; 
    height: 20px;
    display: inline-block;
    background-size: contain;
    float: right;
    background-repeat: no-repeat;
    transform:rotate(90deg);
    transition:all 1s ease;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KIDwhLS0gQ3JlYXRlZCB3aXRoIE1ldGhvZCBEcmF3IC0gaHR0cDovL2dpdGh1Yi5jb20vZHVvcGl4ZWwvTWV0aG9kLURyYXcvIC0tPgogPGc+CiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPgogIAogPC9nPgogPGc+CiAgPHRpdGxlPkxheWVyIDE8L3RpdGxlPgogIDxwYXRoIHN0cm9rZT0ibnVsbCIgaWQ9InN2Z18zIiBkPSJtMzEsNTg4LjAwMDA5bDM3Mi41MDAwMSwtNTgwLjM3NTA5bDM3Mi41MDAwMSw1ODAuMzc1MDlsLTc0NS4wMDAwMSwweiIgc3Ryb2tlLXdpZHRoPSIxLjUiIGZpbGw9IiMwMDAiPjwvcGF0aD4KIDwvZz4KPC9zdmc+");
     }

.fittnessTest .section_head.open::after{
    content: '';
    transform:rotate(180deg);
}


.VimeoVideo {
    text-align: center;
    padding: 30px;
}


