/**
 * The following styles are used to set some baseline styling for the feedback component
 */
.post-feedback-tool {
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.post-feedback-tool legend {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-feedback-tool ul {
    margin-left: 0;
    margin-bottom: 15px;
    list-style: none;
    display: flex;
    justify-content: center;
}

.post-feedback-tool ul li {
    position: relative;
}
.post-feedback-tool input[type="radio"] {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    opacity: 0;
    width: 45px;
    height: 57px;
    margin-bottom: 0;
    z-index: 1;
    /*&:focus {
        opacity: 1;
        background-color: red;
    }*/
}

.post-feedback-tool input[type="radio"] + label {
    padding: 10px;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 99px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    margin: 0 5px;
    width: 36px;
    height: 36px;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    
}

/*
input[type="radio"].rc_post_feedback_two_input:hover + label {
        background-image: url( '../img/page-feedback-two-active.svg' );
    }
*/

.post-feedback-tool input[type="radio"]:checked + label {
    background-color: #000;
    color: #fff;
}

.post-feedback-tool input[type="radio"]:hover,
.post-feedback-tool input[type="radio"] + label:hover {
    cursor: pointer;
}

.post-feedback-tool button {
    display: none;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #444;
    color: #fff;
    background: #444;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

.post-feedback-tool button:hover {
    border: 1px solid #000;
    color: #fff;
    background: #000;
}

.post-feedback-tool span {
    font-weight: 400;
}