/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 07-May-2014, 23:19:46
    Author     : Mahbub Alam Khan
    URL : http://bluewindlab.net
*/

.bpm-container{
    
    border: 1px solid #CCCCCC;
    padding: 0;
    background: #F9F9F9;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    
}

.bpm-container .btn-poll-flip{
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    
    
}


.bpm-question-container .bpm-poll-question{
    font-size: 14px;
    font-weight: bold;
    background: #CCCCCC;
    padding: 12px;
    margin: 0px;
    color: #2C2C2C;
}

.bpm-question-container .bpm-poll-options{
    list-style-type: none;
    padding: 0;
    margin: 12px 0px;
}

.bpm-question-container .bpm-poll-options li{
     font-size: 12px;
     display: block;
     margin: 0 0 12px 0;
     padding: 0 2px 0 5px;
}

.bpm-question-container .bpm-poll-options li:hover label{
    cursor: pointer;
}

.bpm-question-container .bpm-poll-options li input[type="radio"]{
    
    display: none;
}

.bpm-question-container .bpm-poll-options li input[type="radio"] + label:before{
    
    background: white;
    border: 1px solid #959595;
    content: "";
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    height: 12px;
    line-height: 12px;
    width: 12px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    margin: -3px 7px 0 0;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #FFFFFF;
    cursor: pointer;
}

.bpm-question-container .bpm-poll-options li:hover input[type="radio"] + label:before{
    cursor: pointer;
    content: "\2022";
    color: #2c2c2c;
    border: 1px solid #555555;
}


.bpm-question-container .bpm-poll-options li input[type="radio"]:checked + label:before{

    content: "\2022";
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    
}
.action-container{
    clear: both;
    padding: 12px;
    background: #CCCCCC;
}

.btn-vote{
    display: inline-block;
    cursor: pointer;
}

.btn-result{
   display: inline-block;
   cursor: pointer;
}

.bpm-wait-message-container{
    font-size: 14px;
    font-weight: bold;
    padding: 12px;
    margin: 0px;
    color: #2C2C2C;
    text-align: center;
}

/*------------------------------ Result Container ---------------------------------*/

.result-container{
    display: none;
}

.result-container p.bpm-poll-results-title{
    font-size: 14px;
    font-weight: bold;
    background: #CCCCCC;
    padding: 12px;
    margin: 0px;
    color: #2C2C2C;
}

.result-container p.bpm-message{
    padding: 12px;
    margin: 0px;
    color: #2C2C2C;
}
 .result-container ul.bpm-poll-results{
    list-style-type: none;
    padding: 0px 5px;
    margin: 12px 0px;
}

 .result-container ul.bpm-poll-results li{
    display: block;
    margin: 0 0 12px 0;
    padding: 0px;  
    font-size: 12px;
}

.result-container p.total-votes{
    padding: 0 12px 12px 12px;
    margin: 0px;
}


hr.bpm-custom-hr{
    margin: 12px 0;
}



/*------------------------------ Bar Animation Styles ---------------------------------*/

.bar {
    margin: 5px 0 3px;
    border: 1px solid #eee;
    background: #333;
    overflow: hidden;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}
.bar > span {
    display: block;
    height: 20px;
    width: 20%;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

/*------------------------------ STYLE 1 ( BASIC ) ---------------------------------*/
.bpm_01 > span {
    background-color: #FF9932;
}

/*------------------------------ STYLE 2( GRADIENT )  ---------------------------------*/

.gradient > span {
    box-shadow: 
        0 5px 5px rgba(255,255,255,0.6) inset, 
        0 -5px 7px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 
        0 5px 5px rgba(255,255,255,0.6) inset, 
        0 -5px 7px rgba(0, 0, 0, 0.4) inset;
    -webkit-box-shadow: 
        0 5px 5px rgba(255,255,255,0.6) inset, 
        0 -5px 7px rgba(0, 0, 0, 0.4) inset;
    filter: progid:DXImageTransform.Microsoft.gradient( 
        startColorstr='#33ffffff', 
        endColorstr='#33000000',
        GradientType=0 );
}

.bpm_02 > span {
    background-color: #90EE90;
}

/*------------------------------ STYLE 3 ( GLOSSY EFFECT )  ---------------------------------*/

.gloss > span {
    background-image: -moz-linear-gradient(top, 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(0,0,0,0.2) 55%, 
        rgba(0,0,0,0.1) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, 
        color-stop(0%,rgba(255,255,255,0.2)), 
        color-stop(45%,rgba(255,255,255,0.1)), 
        color-stop(55%,rgba(0,0,0,0.2)), 
        color-stop(100%,rgba(0,0,0,0.1)));
    background-image: -webkit-linear-gradient(top, 
        rgba(255,255,255,0.5) 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(0,0,0,0.2) 55%, 
        rgba(0,0,0,0.1) 100%);
    background-image: -o-linear-gradient(top, 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(0,0,0,0.2) 55%, 
        rgba(0,0,0,0.1) 100%);
    background-image: -ms-linear-gradient(top, 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(0,0,0,0.2) 55%, 
        rgba(0,0,0,0.1) 100%);
    background-image: linear-gradient(to bottom, 
        rgba(255,255,255,0.2) 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(0,0,0,0.2) 55%, 
        rgba(0,0,0,0.1) 100%);
}

.bpm_03 > span {
    background-color: #dbf043;
}

/*------------------------------ STYLE 4 (STRIPE)  ---------------------------------*/

.stripe > span {
    background-size:30px 30px;
    -moz-background-size:30px 30px;
    -webkit-background-size:30px 30px;
    -o-background-size:30px 30px;

    background-image: -moz-linear-gradient(-45deg, 
        rgba(255,255,255,0.15) 0%, 
        rgba(255,255,255,0.15) 25%, 
        rgba(255,255,255,0) 25%, 
        rgba(255,255,255,0) 50%, 
        rgba(255,255,255,0.15) 50%, 
        rgba(255,255,255,0.15) 75%, 
        rgba(255,255,255,0) 75%, 
        rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, 
        color-stop(0%,rgba(255,255,255,0.2)), 
        color-stop(25%,rgba(255,255,255,0.2)), 
        color-stop(25%,rgba(255,255,255,0)), 
        color-stop(50%,rgba(255,255,255,0)), 
        color-stop(50%,rgba(255,255,255,0.2)), 
        color-stop(75%,rgba(255,255,255,0.2)),
        color-stop(75%,rgba(255,255,255,0)),
        color-stop(100%,rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(-45deg, 
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0.3) 25%,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.3) 75%,
        rgba(255,255,255,0) 75%,
        rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(-45deg, 
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.15) 25%,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.15) 75%,
        rgba(255,255,255,0) 75%,
        rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient(-45deg, 
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.15) 25%,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.15) 75%,
        rgba(255,255,255,0) 75%,
        rgba(255,255,255,0) 100%);
    background-image: linear-gradient(135deg, 
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.15) 25%,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.15) 75%,
        rgba(255,255,255,0) 75%,
        rgba(255,255,255,0) 100%);
}

.bpm_04 > span {
    background-color: #4169E1;
}

/*------------------------------ STYLE 5 (ANIMATED STRIPE)  ---------------------------------*/

.bpm_05 > span {
    background-color: #4169E1;
}

.animate {
    animation: progress 2s linear infinite;
    -moz-animation: progress 2s linear infinite;
    -webkit-animation: progress 2s linear infinite;
    -ms-animation: progress 2s linear infinite;
    -o-animation: progress 2s linear infinite;
}

@-webkit-keyframes progress {
    from {
    background-position: 0 0;
}
to {
    background-position: -60px -60px;
}
}
@-moz-keyframes progress {
    from {
    background-position: 0 0;
}
to {
    background-position: -60px -60px;
}
}
@-ms-keyframes progress {
    from {
    background-position: 0 0;
}
to {
    background-position: -60px -60px;
}
}
@-o-keyframes progress {
    from {
    background-position: 0 0;
}
to {
    background-position: -60px -60px;
}
}
@keyframes progress {
    from {
    background-position: 0 0;
}
to {
    background-position: -60px -60px;
}
}

/*------------------------------ STYLE 6 (3D ROTATE) ---------------------------------*/

.pattern2 > span {
    background-size: 10px 60px; 
    background-position: 0;
    background-image: -moz-radial-gradient(center, ellipse cover, 
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,.2) 20%,
        transparent 40%);
    background-image: -webkit-gradient( radial, center center, 0, center center, 60, 
        color-stop(0, rgba(255,255,255,.9)), 
        color-stop(20%, rgba(255,255,255,.2)), 
        color-stop(40%, rgba(255,255,255,0)),
        color-stop(100%, rgba(255,255,255,0)));
    background-image: -webkit-radial-gradient(center, ellipse cover, 
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,.2) 20%,
        transparent 40%);
    background-image: -o-radial-gradient(center, ellipse cover, 
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,.2) 20%,
        transparent 40%);
    background-image: -ms-radial-gradient(center, ellipse cover, 
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,.2) 20%,
        transparent 40%);
    background-image: radial-gradient(ellipse at center, 
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,.2) 20%,
        transparent 40%);	
}

.bpm_06 > span {
    background-color: #e31d1a;
}

.bpm-container+.bpm-container{
    margin-top: 48px;
}

.bpm-container a.bpm_edit{
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

/*------------------------------ CHART CONTAINER ---------------------------------*/


.chart {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 12px 0px 0px 0px;
  text-align: center;
}

.chart:first-child{
    margin-left: 24px;
}

.chart+.chart{
    margin-left: 24px;
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  line-height: 110px;
  z-index: 2;
}
.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}