.vote form {
    background-color: #EEE !important;
    padding: 36px 25px 26px;
}

.checkbox-left {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 15px;
}

.checkbox-left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #00549a;
}

.checkbox-left input:checked~.checkmark {
    background-color: #00549a;
    border: 2px solid #00549a;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-left input:checked~.checkmark:after {
    display: block;
}

.checkbox-left .checkmark:after {
    left: 5px;
    top: 0;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #00549a;
    border-radius: 50%;
}

.checkbox-left input:checked~.radiomark {
    background-color: #00549a;
    border: 2px solid #00549a;
}

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-left input:checked~.radiomark:after {
    display: block;
}

.checkbox-left .radiomark:after {
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eee;
}

.vote-input {
    font-size: 1.33em;
    margin-bottom: 20px;
    margin-left: 35px;
}

.vote-input input,
input.vote-input {
    height: 35px;
    border: 1px solid #a7a9ac;
    padding-left: 10px;
    font-family: 'Roboto';
    font-weight: 400;
    margin-left: 15px;
}

.vote-flex {
    display: flex;
    align-items: baseline;
}

 .vote-link {
    display: block;
    font-size: 1.33em;
    margin: 5px 0;
 }