.voting-contest-elementor-widget {

}

.voting-choice {
    margin-bottom: 10px;
    position: relative;
}

.voting-choice input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.voting-choice label {
    cursor: pointer;
    display: inline-block;
    background-color: #ffeef1;
    padding: 10px 20px 10px 50px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    width: 100%;
    border-radius: 12px;
    color: #bf0a30;
    line-height: 1.5em;

}

.voting-choice input[type="radio"]:checked + label {
    background-color: #bf0a30;
    border-color: #bf0a30;
    color: #ffffff;
    transition: all .6s ease;
}
/*

.voting-choice label span {
    float: right;
    font-size: 1.25em;
}
*/

.voting-choice input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 1rem;
    top: calc(50% - 10px);
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 100%;
    background: #ffbbc8;
    box-shadow: 0 0 3px #ffbbc8;
    transition: all .3s ease;
}


.voting-choice input[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 16px;
    top: calc(50% - 10px);
    width: 19px;
    height: 19px;
    border: 3px solid #fff;
    border-radius: 100%;
    background: #ff99ae;
    box-shadow: 0 0 3px #ff99ae;
    transition: all .3s ease;
}

.voting-choice input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: 18px;
    top: calc(50% - 8px);
    width: 15px;
    height: 15px;
    border-radius: 100%;
    transition: all .2s ease;
    background: #bf0a30;
    opacity: 1;
    transform: scale(1);
}


.voting-choice input[type="radio"]:focus + label {

}

.voting-choice label:hover {
    background-color: #ffd5dd;
}

.voting-description-sms code {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}
