/* The container */
#sectionMoquette .container {
    display: block;
    position: relative;
    height: 50px;
    width:50px;
    margin-top:20px;
    padding-left: 70px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float:left;
}
#sectionMoquette .container .mylabel{
    position:absolute;
    top:-22px;
    left:0;
}

/* Hide the browser default radio button */
#sectionMoquette .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
#sectionMoquette .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: #ccc;
    border:1px solid #000;
}

/* On mouse-over, add a grey background color */
#sectionMoquette container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
#sectionMoquette .container input:checked ~ .checkmark {
}

/* Create the indicator (the dot/circle - hidden when not checked) */
#sectionMoquette .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
#sectionMoquette .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
#sectionMoquette .container .checkmark:after {
    left: 20px;
    top: 2px;
    width: 10px;
    height: 40px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}