:root {
    --mff: 'Open Sans', sans-serif;
    --bg: #27354D;
    --lightbg: #3A4A64;
    --hover: rgb(213, 216, 221);
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body {
    height: 100%;
    min-height: 100%;
    margin: 0;
}
body {
    font-size: 1em;
    line-height: 1.4;
    color: #fff;
    font-family: var(--mff);
}
body > div:first-child {
    /*background: url(../img/site-bg.jpg) top center no-repeat;*/
	background: url(../img/stoiximan-bg.jpg) top center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100%;
}

a {
    transition: color .4s ease;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}

.slink {
    color: #fff;
}
.slink:hover {
    color: var(--hover);
}

h1, h2 {
    color: #fff;
    font-family: var(--mff);
    font-weight: 900;
}

#header {
    padding: 30px 0;
}

#close_video {
    position: absolute;
    bottom: -45px;
    right: 0;
    opacity: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: all .6s;
}
#close_video.show {
    opacity: 1;
}

#navpolls article {
    padding: 0 0 50px 0;
}
#navpolls article h2 {
    font-size: 30px;
    margin: 0;
}
#navpolls article figure {
    margin-bottom: 0;
}
.blueb {
    display: inline-block;
    padding: 15px 0;
    width: 210px;
    text-align: center;
    background: #062c40;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    transition: all .6s;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}
.blueb:hover {
    background: rgb(40, 38, 25);
    color: #fff;
}

.blueb.dark {
    background: #D9C20A;
    color: #fff;
}
.blueb.dark:hover {
    background: #000;
}

.blueb-stoiximan {
	cursor: pointer;
	display:inline-block;
	width:210px;
	height:65px;
	background:url(../img/stoiximan-vote-empty.png) center no-repeat;
	text-align: center;
	color: #fff;
    font-size: 20px;
    font-weight: 900;
	padding: 23px 0 0 0;
	border:none;
}
.blueb-stoiximan:hover {
    color: #eebe37;
}
.blueb-stoiximan.stoiximan {
	padding: 17px 0 0 0;
}

.beforesubmit #submit_spinner, .aftersubmit #submit_button { display: none; }
.beforesubmit #submit_button, .aftersubmit #submit_spinner { display: block; }

#homevideo {
    margin-top: 50px;
}
#homevideo + #navpolls {
    margin-bottom: 300px;
    margin-top: 70px;
}

#poll h1 {
    font-size: 30px;
}

/* COUNTDOWN */
.countdown{text-transform: uppercase;}
.countdown > div{display: inline-block;}
.countdown > div > span{display: block; text-align: center;}
.countdown-container{margin:0 3px;}
.countdown-container .countdown-heading{font-size: 16px; font-weight: 800; line-height: 8px; margin: 3px; color:#030A41;}
.countdown-container .countdown-value{font-size: 22px; font-weight: 300; padding:0 10px; color:#fff;}

/* RADIO BY https://codepen.io/AngelaVelasquez/pen/Eypnq */
.poll_wrapper * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.poll_wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0 0 30px 0;
    overflow: auto;
}
  
.poll_wrapper ul li{
    color: #fff;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
}
  
.poll_wrapper ul li input[type=radio], .poll_wrapper ul li input[type=checkbox]{
    position: absolute;
    visibility: hidden;
}
  
.poll_wrapper ul li label{
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 0 25px 0 65px;
    margin: 10px auto;
    height: 35px;
    line-height: 34px;
    z-index: 9;
    cursor: pointer;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
}
.poll_wrapper ul li label span {
    display: block;
    height: 100%;
    background: #fff;
    color: #030A41;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 400;
    transition: all .25s;
    -webkit-transition: all .25s;
}
  
.poll_wrapper ul li:hover label{
    color: #030A41;
}
.poll_wrapper ul li:hover label span{
    background: rgb(40, 38, 25);
    color: #fff;
}
  
.poll_wrapper ul li .check{
    display: block;
    position: absolute;
    border: 5px solid #fff;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: 10px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}
  
 .poll_wrapper ul li:hover .check {
    border: 5px solid #D9C20A;
}
  
.poll_wrapper ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}
  
.poll_wrapper input[type=radio]:checked ~ .check, .poll_wrapper input[type=checkbox]:checked ~ .check  {
    border: 5px solid #D9C20A;
}
  
.poll_wrapper input[type=radio]:checked ~ .check::before, .poll_wrapper input[type=checkbox]:checked ~ .check::before {
    background: #D9C20A;
}
  
.poll_wrapper input[type=radio]:checked ~ label, .poll_wrapper input[type=checkbox]:checked ~ label {
    color: #D9C20A;
}
.poll_wrapper input[type=radio]:checked ~ label span, .poll_wrapper input[type=checkbox]:checked ~ label span {
    background: #D9C20A;
    color: #fff;
}

.thanx .blueb {
    margin: 0 40px;
}

@media only screen and (min-width : 30em) { /* >= 480 (Phones landscape) */

  

}

@media only screen and (min-width : 48em) { /* >= 768 (Tablets portrait) */

    .countdown-container .countdown-heading{font-size: 22px;}
    .countdown-container .countdown-value{font-size: 32px;}

}

@media only screen and (min-width : 60em) { /* >= 960 (Desktops & tablets landscape) */

    #navpolls {
        margin-top: 140px;
    }
    #navpolls article {
        padding: 0;
    }

    #poll > div {
        margin-top: 0;
    }

}

@media only screen and (min-width : 75em) { /* >= 1200 (Large Desktops) */

    #close_video {
        bottom: 0;
        top: 0;
        right: -60px;
    }

    .countdown-container .countdown-heading{font-size: 20px;}
    .countdown-container .countdown-value{font-size: 80px;}

}