.each_option {
    margin: 2px 0;
    
        font-size: 25px;
    padding: 5px;
        cursor: pointer;
        position: relative;
}
.each_question {
    font-size: 22px;
    margin-bottom: 10px;
    border: solid 1px rgba(128,128,128,.5);
    padding: 15px;
}

.question_container_voting input[type="radio"] {
    width: calc(100% - 5px);
    opacity: .5;
    position: absolute;
    height: 34px;
    top: 0px;
    cursor: pointer;
}
p.optlabel {
    margin: 0;
}
.each_option.bg_grey{
	background-color: rgba(128,128,128,.25);
}
.question_d {
    font-weight: bold;
    font-size: 30px;
}
.each_option.bg_yellow{
	background-color: rgba(256,256,0,.25);
}

.save_voting{
	cursor: pointer;
}
table.resulttable {
    font-size: 25px;
}

tr.eachrow.headingrow {
    font-weight: bolder;
}
.eachrow.row2 {
    background: rgba(128,128,128,.25);
}

.headingrow th {
    font-size: 25px;
}
.resultheading {
    text-align: center;
    font-size: 40px;
}

.next_question {
    cursor: pointer;
    border: solid 1px;
    width: 100px;
    text-align: center;
    padding: 5px 10px;
     box-shadow: 4px 4px 10px rgba(128,128,128,.85);
}
.voter_form_container {
    width: 250px;
    margin: auto;
}
.enternamelabel {
    margin: 0;
    padding: 5px 0;
    text-align: center;
}
.voter_form_container input {
    margin: 5px 0;
    border-radius: 5px;
    border: solid 1px #888;
    font-size: 20px;
}
p.submit_container {
    text-align: center;
    margin: 0;
}
.voter_form_container p {
    margin: 0;
    font-size: 25px;
}
.voter_form_container input[type="submit"]{
	width: 70px;
	cursor: pointer;
}
.create_yours_container{
	text-align: center;
}
.create_yours_container a {
    text-decoration: none;
    border: solid 2px;
    border-radius: 5px;
    padding: 5px 10px;
}
*:focus{
	outline: none;
}
.save_voting {
    cursor: pointer;
    border: solid 1px;
    width: 100px;
    padding: 5px 10;
    text-align: center;
    font-size: 17px;
    box-shadow: 4px 4px 10px rgba(128,128,128,.85);
}


input[type='radio']:after {
    width: 15px;
    height: 15px;
    top: -2px;
    left: -10px;
    position: relative;
    background-color:red;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
    opacity: 0;
}

input[type='radio']:checked:after {
    width: 100%;
    height: 36px;
    top: -3px;
    position: relative;
    background-color: #ffa500;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid white;
    opacity: 1;
}

h3.copyright {
    text-align: center;
}
.copyright a{
	text-decoration: none;
	font-size: 15px;
}
.devsign{
	text-align: right;
}
.voting_heading{
	text-align: center;
}