/*Used for NAV menu*/
.menu-big {
    display: none;
}

.menu-small {
    display: block;
}
/* * * * * * * * * */

/* * *  * * MODAL CSS * * * * */

.signupBox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
     
    transform: scale(1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 5000;
    text-align: center;
}
.popThis {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
     
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 5000;
    text-align: center;
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 5000;
    text-align: center;
}

.modal-content {
    position: relative;
    top: 15%;
    display: inline-block;
    background-color: white;
    padding: 1rem 1.5rem;
    width: 80%;
    max-width: 600px;
    border-radius: 0.5rem;
    border: 1px solid #cccccc;
}

.modal-content {
    background: rgba(165,165,165,1);
    background: -moz-linear-gradient(0deg, rgba(165,165,165,1) 0%, rgba(233,233,233,1) 50%, rgba(165,165,165,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(130,130,130,1)), color-stop(50%, rgba(233,233,233,1)), color-stop(100%, rgba(130,130,130,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(165,165,165,1) 0%, rgba(233,233,233,1) 50%, rgba(165,165,165,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(165,165,165,1) 0%, rgba(233,233,233,1) 50%, rgba(165,165,165,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(165,165,165,1) 0%, rgba(233,233,233,1) 50%, rgba(165,165,165,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(165,165,165,1) 0%, rgba(233,233,233,1) 50%, rgba(165,165,165,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#828282', endColorstr='#828282',GradientType=1 ); /* ie6-9 */
}

.hidey.modal-content {
    display: none;
}

.thankyou.modal-content {
    padding-bottom: 50px;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.register-now, .congratulations {
    list-style: none;
}

.register-now li {
    text-align: center;
}

.register-now li h1, .congratulations li h1 {
    text-align: left;
    color: #5C3079;
    font-size: 24px;
    padding-bottom: 10px;
}

.congratulations li h1 {
    text-align: center;
}

.register-now h2 {
    color: #000000;
    font-size: 18px;
    padding-top: 25px;
    line-height:27px;
}

.register-now li i {
    padding-right: 15px;
}

.facebook-signup, .continue {
    width: 90%;
    height: 40px;
    margin: 5px;
    margin-top: 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 5px;
}

.crown {
    position: absolute;
    top: -31px;
    right: -30px;

}

.register-now p {
    font-size: 14px;
    padding-top: 25px;
    line-height:20px;
}

.facebook-signup {
    background: #3b5998;
}

.continue {
    background: #00B2EC;
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    animation-timing-function: linear;
}

#email-button {
    width: 90%;
    height: 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    overflow: hidden;
}

.email-signup, .email-input {
    position: absolute;
    background: #5C3079;
    margin-top: 0px;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    outline: none;
}

.email-signup {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 3;
}

.email-signup.emclicked {
    border: none;
    height: 36px;
    top: 2px;
}

.fa-sign-in-alt {
    position: absolute;
    right: -11px;
    z-index: 2;
    top: 3px;
    font-size: 35px;
    color: #5c3079;
}

.email-input {
    z-index: 1;
    background: #ffffff;
    color: #5C3079;
    width:  99%;
    height: 34px;
    text-indent: 10px;
}

.close-button {
    float: right;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #dddddd;
    margin-right: -8px;
}

.close-button i {
    font-size: 30px;
    color: #ffffff;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}


.close-button:hover {
    background-color: #E51E1E;
}

.tos {
    margin-bottom: 10px;
}

/* * * * * * * * * * * * * * * */


header{
    position: fixed;
    top: 0px;
    z-index: 10000;
    width:100%; 
    height:50px; 
    line-height:50px;
    background: rgba(233,233,233,1);
    background: -moz-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 70%, rgba(175,175,175,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(175,175,175,1)), color-stop(50%, rgba(233,233,233,1)), color-stop(100%, rgba(130,130,130,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 70%, rgba(175,175,175,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 70%, rgba(175,175,175,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 70%, rgba(175,175,175,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 70%, rgba(175,175,175,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9e9e9', endColorstr='#afafaf',GradientType=1 ); /* ie6-9 */
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;
}

header img {
    max-height: 40px;
    margin-top: 8px;
    margin-left: 10px;
}

.hamburger{
  background:none;
  position:absolute;
  top:0;
  right:0;
  line-height:40px;
  padding:5px 15px 0px 15px;
  color:#000000;
  border:0;
  font-size:1.4em;
  font-weight:bold;
  cursor:pointer;
  outline:none;
  z-index:10000;
}

.cross{
  background:none;
  position:absolute;
  top:0px;
  right:0;
  padding:5px 15px 0px 15px;
  color:#000000;
  border:0;
  font-size:3em;
  line-height:65px;
  font-weight:bold;
  cursor:pointer;
  outline:none;
  z-index:1000;
}

.menu {
    z-index: 4000; 
    font-weight:bold; 
    font-size:0.8em; 
    width:100%; 
    background:#f1f1f1;  
    position:fixed; 
    top: 50px; 
    text-align:center; 
    font-size:14px;    
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;
}

.menu ul {
    margin: 0; 
    padding: 0; 
    list-style-type: none; 
    list-style-image: none;
}

.menu li {
    display: block;   
    padding:15px 0 15px 0; 
    border-bottom:#dddddd 1px solid;
}
.menu li:hover {
    display: block;    
    background:#ffffff; 
    padding:15px 0 15px 0; 
    border-bottom:#dddddd 1px solid;
}
.menu ul li a { 
    text-decoration:none;  
    margin: 0px; 
    color:#000000;
    text-transform: uppercase;
}
.menu ul li a:hover {  
    color: #000000; 
    text-decoration:none;
}
.menu a {
    text-decoration:none; 
    color:#000000;
}
.menu a:hover {
    text-decoration:none;
    color:#000000;
}

.glyphicon-home{
  color:white; 
  font-size:1.5em; 
  margin-top:5px; 
  margin:0 auto;
}

/* * * * * * * * * */

.page-head {
  width: 100%;
  min-width: 515px;
}

.page-head.page-head-scrolled {
    position: fixed;
    top: 0;
    z-index: 1000;
    animation-name: slidedown;
    animation-duration: .5s;
    animation-fill-mode: forwards;  
}

@keyframes slidedown {
    0% {padding-top: 0px;}
    100%{padding-top: 20px;}
}



#fixedlogo {
    position: relative;
    max-width: 1090px;
    margin: 0 auto;
    text-align: left;
    display: none;
}

#fixedlogo img {
    max-height: 55px;
    position: absolute;
    left: 10px;
    top: -21px;
}

/* * * * * * * * * * * * * * * * * * * * */


/* ADSENSE PLACEHOLDERS */
.mrad-placeholder {
    width: 300px;
    height: 250px;
    background: #cccccc;
    display: inline-block;
    border: 10px solid #ffffff;
    margin-top: 10px;
    margin-left: 20px;
}

.hpad-placeholder {
    width: 300px;
    height: 600px;
    background: #cccccc;
    display: inline-block;
    margin-top: 40px;
    border: 10px solid #ffffff;
    margin-left: 20px;
}

.bnad-placeholder {
    width: 300px;
    height: 250px;
    background: #cccccc;
    display: inline-block;
    margin: 0 auto;
    margin-top: 2px;
}

.placeholder { /* PLACEHOLDER FOR PAGE TEMPLATES */
    height: 400px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    background: #efefef;
    min-width: 320px;
    background: -moz-linear-gradient(180deg, #f7f7f7 60%, #007cb8 100%);
    background: -webkit-linear-gradient(180deg, #f7f7f7 60%, #007cb8 100%);
    background: linear-gradient(180deg, #f7f7f7 60%, #007cb8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f7f7",endColorstr="#007cb8",GradientType=1);
}

.member {
    position: relative;

    font-size: 14px;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
}

.member p:first-of-type {
    text-transform: uppercase;
}

.fa-user-circle { 
    color: #c40016;
    font-size: 24px;
}


nav {
    /*height: 20px;*/
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;
    padding: 5px;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}

.panel h2 {
    padding: 5px;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background: rgba(130,130,130,1);
    background: -moz-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(130,130,130,1)), color-stop(50%, rgba(233,233,233,1)), color-stop(100%, rgba(130,130,130,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#828282', endColorstr='#828282',GradientType=1 ); /* ie6-9 */
}

nav, nav.gradient {
    background: rgba(130,130,130,1);
    background: -moz-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(130,130,130,1)), color-stop(50%, rgba(233,233,233,1)), color-stop(100%, rgba(130,130,130,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(130,130,130,1) 0%, rgba(233,233,233,1) 50%, rgba(130,130,130,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#828282', endColorstr='#828282',GradientType=1 ); /* ie6-9 */
}

nav.gradientshift {
    background: rgba(233,233,233,1);
    background: -moz-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 50%, rgba(175,175,175,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(175,175,175,1)), color-stop(50%, rgba(233,233,233,1)), color-stop(100%, rgba(130,130,130,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 50%, rgba(175,175,175,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 50%, rgba(175,175,175,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 50%, rgba(175,175,175,1) 100%); /* ie10+ */
    background: linear-gradient(90deg, rgba(233,233,233,1) 0%, rgba(175,175,175,1) 50%, rgba(175,175,175,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9e9e9', endColorstr='#afafaf',GradientType=1 ); /* ie6-9 */
}

nav ul li a, nav ul li a:visited {
    text-decoration: none;
    color: #000000;
}

nav ul { 
    text-align: right; 
    max-width: 1100px;
    margin: 0 auto;

}

nav ul li {
    display: inline-block;
    padding-right: 20px;
    line-height: 20px;
}

.main {
    text-align: center;
}

.generic h1, .generic p {
    font-size: 35px;
    text-align: left;
    margin: 30px;
    color: #651c7a;
}

.generic p {
    font-size: 18px;
    color: #0083ce;
    line-height: 24px;
}

.center-content {
    display: inline-block;
    width: 95%;
    height: auto;
    margin-top: 50px;
}


.main-panel, .side-panel {
    box-sizing: border-box;
    float: left;
    padding-top: 5px;
    /*border: 1px solid;*/
}

.main-panel {
    width: 100%;
}

.side-panel {
display: none
}

.panel {
    width: 100%;
    margin: 50px 0px;
    background: #ffffff;
    /*border: 1px solid #000000;*/
    overflow: hidden;

}

.panel.totalvotes, .panel.gender, 
.panel.age, .panel.politics, .panel.heading {
    min-height: 170px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    background: #f2f2f2;
    overflow: hidden;
    box-shadow: none;
    padding-bottom: 10px;
}

.panel.gender {
    /* max-width: 39%; */
    /* float: left; */
    text-align: center;
    margin-right: 0px;
    width: 100%;
}

.panel.heading {
    margin: 40px auto;
    text-align: center;
    padding-bottom: 100px;
}

.input-page {
    max-width: 90%;
    position: relative;
    margin: 0 auto;
    margin-top: 100px;
}

.input-page img {
    position: absolute;
    top: -30px;
    right: -29px;
    z-index: 1;
}

.panel.heading h2 {
    font-size: 24px;
    background: #00B2EC;
    color: #ffffff;
    font-weight: normal;
    padding-top: 10px;
    padding-bottom: 10px;
}

.panel.heading p {
   padding-top: 10px;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    width: 90%;
    margin: 0 auto;
}

.panel.heading form ul li {
    position: relative;
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
}

.panel.heading form ul li input, .panel.heading form ul li select {
    width: 100%;
    height: 30px;
    font-size: 18px;
    border: 1px solid #a0a0a0;
}

.panel.heading form ul li select,
.panel.heading form ul li textarea {
    height: 40px;
    line-height: 40px;
    width: 100%;
    border: 1px solid #a0a0a0;
}

.panel.heading form ul li textarea {
    height: 100px;
    resize: none;
}

.panel.heading form ul li.choice {
    margin-bottom: 50px;
}

.panel.heading form ul li.comment {
    min-height: 100px;
    margin-bottom: 50px;
}

.panel.heading form {
    text-align: left;
}


.panel.heading form ul {
    width: 80%;
    margin: 50px auto;
    list-style: none;
}

.panel.heading button {
    width: 80%;
    max-width: 250px;
    height: 40px;
    border-radius: 5px;
    background: #762A74;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
}

.button-wrap {
    width: 100%;
}

.panel button:hover {
    opacity: .7;
}

.map {
    width: 372px;
    height: 230px;
    background: #cccccc;
    margin: 0 auto;
    margin-top: 95px;
}

.women-section, .choice-section, .male-section  {
    width: 25%;
    height: 146px;
    margin: 2px;
    display: inline-block;
    background: #ffffff;
    vertical-align: top;
    text-transform: uppercase;
}

.choice-section {
    width: 40%;
    background: none;
}

.panel.gender i.fa-female,
.panel.gender i.fa-male {
    display: inline-block;
    font-size: 60px;
    margin-top: 23px;
    margin-right: 10px;
}

.choice-section p, .gender-pct p {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}

.gender-choice {
    margin-top: 10px;
}

.panel.gender > div.gender-choice {
    background: none;
    font-size: 14px;
    text-align: left;
}

.choice-section p {
    text-align: center;
}

.choice-section {
    color: #dc0000;
}

.choice-section p:first-child {
    margin-top: 60px;
    color: #2a37f6;
}

.panel.gender h5 {
    font-size: 14px;
    padding-top: 5px;
}

.gender-pct {
    display: inline-block;
    margin-top: 25px;
    color: #dc0000;
}

.gender-pct p:first-child {
    color: #2a37f6;
}

.panel.age, .panel.politics {
    /*max-width: 59%;
    float: right;*/
    width: 100%;
    text-align: center;
}

.panel.age ul,
.panel.politics ul {
    margin: 0 auto;
    position: relative;
}

.answers {
    width: 90%;
    margin-bottom: 10px;
    min-height: 20px;
    overflow: auto;
    margin: 0 auto;
}

.answer1, .answer2 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
}

.answer1 {
    color: #2a37f6;
    float: left;
    margin-left: 20px;
}

.answer2 {
    color: #dc0000;
    float: right;
    margin-right: 20px;
}


.bg.answer1 {
    float: left;
    margin-left: 65px;
    color: #2a37f6;
    margin-left: 5px;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
}

.bg.answer2 {
    float: right;
    margin-right: 18px;
    color: #dc0000;
    margin-right: 5px;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
}

.ft.answer1 {
    color: #000;
    margin-bottom: 10px;
}

.ft.answer2 {
    color: #000;
    margin-bottom: 10px;
}

.agerange {
    list-style: none;
    font-weight: bold;
    font-size: 14px;
}

.agerange li {
    text-decoration: none;
    margin-top: 15px;
    margin-bottom:10px;
    margin-left: 10px;
    line-height: 25px;
}

.polparty {
    list-style: none;
    font-weight: bold;
    font-size: 14px;
}

.polparty li {
    text-decoration: none;
    margin-top: 15px;
    margin-bottom:10px;
    margin-left: 10px;
    line-height: 25px;
}

.bargraph {
    /* float: right; */
    height: 25px;
    margin: 0 auto;
    width: 90%;
    background: #dc0000;
    /* margin-left: 10px; */
    /* margin-right: 19px; */
    border-radius: 5px;
    background: #dc0000;
    background: -moz-linear-gradient(top, #dc0000 0%, #ff7272 50%, #dc0000 100%);
    background: -webkit-linear-gradient(top, #dc0000 0%,#ff7272 50%, #dc0000 100%);
    background: linear-gradient(to bottom, #dc0000 0%,#ff7272 50%,#dc0000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dc0000', endColorstr='#dc0000',GradientType=0 );
}

.totalvotes h2: {
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;;
}

.clear {
    clear: both;
}

.sharesection {
    list-style: none;
    margin-top: 10px;
    padding-top: 10px;
    background: #ffffff;
    min-height: 25px;
    text-align: center;
}

.sharesection li {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
    vertical-align: top;
    margin-right: 7px;
}

.sharesection p {
    display: none;
}

.sharecount {
    position: relative;
    border: 1px solid #dedede;
    overflow: hidden;
    font-size: 16px;
    color: #787676;
    margin-bottom: 7px;
    background: #eeeeee;
}

.sharecount span {
    color: #bb0000;
    font-size: 20px;
    position: relative;
    top: 10px;
}

.counttxt {
    padding-top: 15px;
}

.sharebutton {
    width: 90%;
    height: 28px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 28px;
    border-radius: 2px;
    cursor: pointer;
}

.sharebutton i {
    text-align: center;
    font-size: 30px;
    position: relative;
    top: 16px;
}

.sharebutton.fb {
    background: #3b5998;
}

.sharebutton.tw {
    background: #00aced;
}

.sharebutton.em {
    background: #555555;
}

.sharebutton.votenow {
    background: #c50006;
    position: absolute;
    background: #c50006;
    float: left;
    bottom: 5px;
    left: 5px;
}

.pollsection {
    position: relative;
    min-height: 450px;
    font-size: 20px;
    margin-bottom: 20px;
    background: #ffffff;
    text-align: left;
}

.pollsection h3 {
    font-size: 24px;
    margin: 25px 5px;
    font-size: 24px;
    padding-left: 10px;
}

.panel h2 {
    bottom: 1px;
    z-index: -1;
    color: #000000;
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;
    margin-bottom: 12px;
}

/*.pollsection h3, .pollsection h4 {
    padding-left: 30px;
}*/

.gendersection {
    width: 50%;
    max-width: 320px;
    float: left;
    font-size: 14px;
    margin-top: 10px;
}



.votesection  {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.meter-container {
    width: 100%;
    /*margin-left: 30px;*/
}

.meter {
    position: relative;
    width: 100%;
    height: 35px;
    border: 1px solid #cccccc;
    /*float: left;*/
    border-radius: 5px;
    margin-bottom: 30px;
}

.meter p {
    position: absolute;
    top: 0px;
    right: 5px;
    font-weight: bold;
    line-height: 35px;
}

.fill {
    height: 100%;
    border-radius: 5px;
}

.fill.blue {
    border-right: 2px solid #ffffff;
    background: #2a37f6;
    background: #2a37f6; /* Old browsers */
    background: -moz-linear-gradient(top, #2a37f6 0%, #5761F2 50%, #2a37f6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2a37f6 0%,#5761F2 50%, #2a37f6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2a37f6 0%,#5761F2 50%, #2a37f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a37f6', endColorstr='#2a37f6',GradientType=0 ); /* IE6-9 */
}

.fill.red {
    background: #dc0000;
    background: #dc0000; /* Old browsers */
    background: -moz-linear-gradient(top, #dc0000 0%, #ff7272 50%, #dc0000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dc0000 0%,#ff7272 50%, #dc0000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dc0000 0%,#ff7272 50%,#dc0000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dc0000', endColorstr='#dc0000',GradientType=0 ); /* IE6-9 */
}

.vote {
    margin-top: 10px;
}

.vote h4 {
    /*padding-left: 30px;*/
    text-transform: uppercase;
    margin-bottom: 3px;
}



.result {
    position: relative;
    margin-top: 8px;
    height: 28px;
    line-height: 28px;
    background-color: #ffffff;
    border: 1px solid #c50006;
    width: 90%;
    display: inline-block;
    font-size: 16px;
}

.result p {
    color: #c50006;
    text-transform: uppercase;
    text-align: left;
    margin-left: 5px;
}

.meterfill {
    height: 100%;
    background: #c50006;
    float: right;
    text-align: right;
}

.meterfill span {
 line-height: 28px;
 margin-right: 5px;
 color: #ffffff;
}

.result.correct {
    border: 1px solid #0098de;
}


.bargraph li {
    color: #c50006;

}

.bargraph li:first-child {
    color: #000000;
}

.bargraph li.correct {
    color: #0098de;
}

.result.correct .meterfill {
    background: #0098de;
}

.result.correct p {
    color: #0098de;
}


.comments-container {
    background: #ffffff;
    margin-top: 11px;
    margin-bottom: 20px;
}

.panel.featured-section {
    -webkit-box-shadow: 0 4px 4px -2px #696969;
    -moz-box-shadow: 0 4px 4px -2px #696969;
    box-shadow: 0 4px 4px -2px #696969;
}

.featured-section ul {
    list-style: none;
}

.featured-section ul li {
    width: 95%;
    background: #D5DEEE;
    display: inline-block;
    padding-top: 45px;
    padding-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    background: -moz-linear-gradient(180deg, #e4e0ef 0%, #ffffff 100%);
    background: -webkit-linear-gradient(180deg, #e4e0ef 0%, #ffffff 100%);
    background: linear-gradient(180deg, #e4e0ef 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e4e0ef",endColorstr="#ffffff",GradientType=1);
}

.featured.bargraph {
    width: 90%;
    margin: 0 auto;
    float: none;
    margin-bottom: 10px;
}

/*.featured-section h4 {
    text-align: left;
    margin-left: 30px;
}*/

.ft.answers {
    margin-top: 20px;
}

.featured-counter {
    position: relative;
    margin-top: 10px;

}

.featured-counter p {
    margin-right: 37px;
    background-color: #9035b6;
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    font-weight: normal;
    text-align: center;
    position: absolute;
    top: -64px;
    right: -5px;
    width: 128px;
}


.folded p {
    background: #8a59aa;
    padding: 5px;
    width: 142px;
    color: #ffffff;
    font-weight: normal;
    z-index: 2;
    border-bottom: 1px solid #3f1c5c;
    position: absolute;
    right: -11px;
    top: 8px;
}

.vote.folded p {
    background: #f2383b;
    border-bottom: 1px solid #7e0a15;
    cursor: pointer;
}

.folded p:after {
    content: "";
    width: 0px;
    height: 0;
    border-top: 10px solid #3f1c5c;
    border-right: 10px solid transparent;
    position: absolute;
    top: 27px;
    right: 0px;
}

.vote.folded p:after {
    border-top: 10px solid #7e0a15;
}

footer {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 12px;
    height: 100px;
    padding-top: 10px;
}

footer a, footer a:visited {
    color: #ffffff;
    text-decoration: none;
}

footer ul {
    padding-top: 35px;
}

footer ul li {
    display: inline-block;
    margin: 4px;
    padding-right: 10px;
    border-right: 1px solid #55b9df;
}



footer ul li:last-child{
    border-right: none;
}

 





















