.item-selectable {

    display: inline-block;

    position: relative;

    margin-right: 20px;

}

.item-selectable label {

    padding: 20px 35px 10px 35px;

    border-radius: 10px;

    cursor: pointer;

    -webkit-transition: all 0.5s ease-out;

    -moz-transition: all 0.5s ease-out;

    -o-transition: all 0.5s ease-out;

    transition: all 0.5s ease-out;

}

.item-selectable:hover label{

    background-color: #009de2;

}

input[type='radio']:checked + label {

    background-color: #005dc6;

}

input[type='radio']:checked + label h3,

input[type='radio']:checked + label h6 {

    color: white;

}

.item-selectable input {

    position: absolute;

    z-index: 1;

    top: 10px;

    left: 10px;

}

.error {

    color: red;

}