body {
  margin: 0px;
  padding:0px;
  color: #323232;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
}
a:active, a:focus, a:hover {text-decoration:none;}
.clearfix:before{
    content: " ";
    display: table;
}
.clearfix:after{
    clear: both;
    content: " ";
    display: table;
}
*, *::before, *::after {
    box-sizing: border-box;
}
h1{font-weight: 700; font-size: 1.9rem;}
p {line-height: 23px;}
p.committee {
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}
.logo {float: left;}
.logo_title {float: right; padding-top: 30px;}
.register_box {
    margin: 0 auto;
    display: block;
    max-width: 350px;
    padding: 60px 0px;
}
.register_box_index {
  margin: 0 auto;
  display: block;
  max-width: 350px;
  padding: 20px 0px;
}
.register_box_voting{
  margin: 0 auto;
  display: block;
  max-width: 650px;
}
.text_fields {
  height: auto;
  padding: 10px;
}
.top-header {
  margin-bottom: 10px;
  border-bottom: 2px solid #0db14c;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-header .menu {
  float: right;
}
.top-header .menu ul {
  list-style: none;
}
.top-header .menu ul li {
  float: left;
  margin-right: 5px;
}
.inner-content{
  max-width: 840px;
  margin: 0 auto;
  padding:20px;
}
.footer {background:#323232;}
.footer_p {color:#fff; margin: 1rem;}

.candidate_pics{
  float: left;
  margin-right: 20px;
}
.casted_vote{
  padding: 10px; border: 1px solid #323232; border-radius: 5px; font-size: 1.2rem;
}
.vote_casted{
    color: #721c24;
    font-size: 14px;
    font-weight: bold;
}
.candidate_sno{
  padding-top: 10px;
}
.candidate_name {
  padding-top: 10px;
  float: left;
}
.candidate_check{
  padding-top: 10px;
}
.candidate_check input[type='checkbox']{
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.counter_box{
  max-width: 101px;
  padding: 10px 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-bottom: 10px;
  background: #fff;
  z-index: 1;
}
.counter_box p{
  margin-bottom: 0px;
  text-decoration: underline;
  font-weight: bold;
  font-size: 14px;
}
.counter_value{
  font-size: 4.5rem;
  font-weight: 700;
  color: #22b24c;
  margin-bottom: 0px;
  line-height: 1;
}
.c_password{
  margin: 10px auto;
  max-width: 290px;
}
.reg_label{
  font-size: 12px;
  font-weight: 700;
  margin: .5rem 0rem;
  color: #ec0101;
}
.sticky {
  position: fixed;
  top: 0;
}

#toTop {
  background-color: #28a745;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  color: #fff;
  display: none;
  height: 35px;
  position: fixed;
  right: 75px;
  text-align: center;
  text-transform: uppercase;
  width: 48px;
  opacity: .9;
  z-index: 100000;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.screen-reader-text {
  padding: 10px;
  font-size: 30px;
}
@media print {
.no-print {
  display:none;
}
.do-print{
  display:block !important;
}
}


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
  display: none;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}