body{
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    margin: auto;
    background-color: #0d5ddd;
    font-family: sans-serif;
}
.activity-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 706px;
}
.input-wrapper{
    height: 420px;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    box-sizing: border-box;
}
.slider-wrapper{
    width: 100%;
    /*display: flex;
    flex-direction: row;
    justify-content: center;*/
    margin-top: 7px;
}
.instructions{
    font-size: 16px;
    font-weight: 500;
}
.chart-wrapper{
    height: 80%;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px 20px 0;
}
.output-wrapper{
    border-radius: 10px 10px 0 0;
    height: 270px;
    background: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.configuration-box{
    display: flex;
    flex-direction: row;
    padding: 4px;
    box-sizing: border-box;
    justify-content: space-around;
    width: 15%;
    height: 70px;
    margin: 5px;
    color: white;
    position: relative;
}
.configuration-box:nth-child(1){
    background-color: #782cf9;
    top: 60%;
}
.configuration-box:nth-child(2){
    background-color: #30a5ff;
    top: 50%;
}
.configuration-box:nth-child(3){
    background-color: #26ffc1;
    color: black;
    top: 40%;
}
.configuration-box:nth-child(4){
    background-color: #79fc49;
    color: black;
    top: 30%;
}
.configuration-box:nth-child(5){
    background-color: #ffb814;
    top: 20%;
}
.configuration-box:nth-child(6){
    background-color: #f92020;
    top: 10%;
}
.configuration-box-left{
    display: flex;
    flex-direction: column;
    flex-basis: 52%;
    justify-content: space-around;
    align-items: center;
}
.configuration{
    font-size: 11pt;
}
.border-line{
    width: 100%;
    height: 2px;
    background-color: white;
}
.element-name{
    font-weight: bold;
}
.output{
    background: radial-gradient(#e7e7e7, #f1f1f1);
    height: 30%;
    color: black;
    padding: 3px;
    margin: auto;
}
/* The slider*/
.slider {
    -webkit-appearance: none;
    width: 96%;
    height: 15px;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    position: relative;
    margin-left: 20px;
    margin-top: 0px;
}
/*.slider::after{
    height: 250px;
    width: 3px;
    background: black;
    margin-left: 50%;
    position: absolute;
    bottom: 27px;
    content: "";
    z-index: -1;
    opacity: 40%;
}*/
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 45px;
    height: 45px;
    background: url('./images/marker.png');
    background-size: 45px 45px;
    cursor: pointer;
    transform: rotate(180deg);
}
.slider::-moz-range-thumb {
    width: 45px;
    height: 45px;
    background: url('./images/marker.png');
    background-size: 45px 45px;
    cursor: pointer;
    transform: rotate(180deg);
}
.slider::-ms-thumb {
    width: 45px;
    height: 45px;
    background: url('./images/marker.png');
    background-size: 45px 45px;
    cursor: pointer;
    transform: rotate(180deg);
}