
@media only screen and (min-width: 992px) {
    .poll-variants div  {
        justify-content: left;
    }
}

.variants-container {
    padding-top: 20px;
}

.variant-container {
    padding-bottom: 20px;
}

.variant-container > div {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    /* margin: 5px 0; */
    user-select: none;

    min-height: 40px;
    word-break: break-all;
}


.poll-variant {
    /* position: relative; */
    display: flex;
    justify-content: start;
    align-items: center;

    /* background-color: transparent; */
    cursor: pointer;
    /* float: none; */
    font-size: 7.5px;
    text-align: left;
    /* height: 40px; */
    line-height: 7.5px;
    /* width: 85%;

    border: 1px dotted gray;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 10px; */
}


.poll-variant-bar {
    background-color: #E1EFFA;
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;

    /* border-radius: 10px 0 0 10px; */
    width: 0%;
    transition: width 1s ease;
}

.poll-variant-bar.checked {
    background-color: #b3fd60;
}


.poll-variant input[type='radio'] {
    width: 14px;
    height: 14px;

    align-items: center;
    justify-content: center;
    margin: 5px 0 5px 8px;

    z-index: 2;
}

.poll-variant-text {
    color: #000000;
    font-family: 'Arial Regular';
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    z-index: 2;
    letter-spacing: 1px;
}

.poll-variant-points {
    display: inline-block;
    width: 40px;

    /* border-top: 2px solid gray; */
    /* padding-top: 10px; */
    /* margin-top: 10px; */

    font-size: 14px;
    letter-spacing: 2px;
    color: gray;
    word-break: keep-all;
}

.poll-variant-points > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 29px;
    border: 1px solid gray;
    border-radius: 3px;
    box-shadow: 1px 1px 1px grey;
    background-color: #ededed;

    color: #787878;
    font-weight: bold;
}


.poll-variant-percentage {
    display: inline-block;
    width: 40px;

    /* border-top: 2px solid gray; */
    padding-top: 10px;
    /* margin-top: 10px; */

    font-size: 14px;
    letter-spacing: 2px;
    color: gray;
    word-break: keep-all;
}
