
/* https://www.w3schools.com/howto/howto_js_rangeslider.asp */
.slider::-moz-range-thumb {
    width: 10px;
    height: 30px;
    border: 0;
    background: #424242;
    cursor: pointer;
}
.slider::-webkit-slider-thumb {
    width: 10px;
    height: 30px;
    border: 0;
    background: #424242;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
}

.slider {
    cursor: pointer;
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: .7;
}

/* Some distance between first MRT element (target) and first reference */
p[id^=Quest_MRT] + label {
    margin-left: 40px;
    margin-right: 80px;
}

.checkb-MRT {
    margin-left: 15px;
    border: 2px solid black;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    text-align:center;
    display: inline-block;
    position: relative;
}

.checkb-MRT > input {
    position: absolute;
    top: 0px;
    right: 45%;
}

.checkb-MRT > div {
    position: absolute;
    top: 20px;
    right: 0%;

    display: inline-flex;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.checkb-MRT > div > img {
    /*position: relative;*/
    /*width: 50%;*/
    max-width: 110px;
    max-height: 110px;
    /*transform: translateY(50%);
    transform: translateX(100%);*/
}