 /* The slider itself */
 .slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 10px;
    /* 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;
    order: 2;
    margin-top: 10px;
    border-radius: 5px;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}
.slider:focus{
    outline: none;
}

/* 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: 15px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    background: #a61d37;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    border-radius: 3px;
}

.body{
    font-size: 16px;
}

p>label{
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    order: 0;
}

p{
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 60px;
    max-width: 640px;
}

label{
    cursor: pointer;
    text-wrap: nowrap;
}

p>span{
    order: 1;
}

input[type="radio"], input[type="checkbox"] {
    accent-color: #a61d37;
    cursor: pointer;
    margin-left: 60px;
    margin-bottom: 20px;
    display: inline-block;
}