@font-face {
  font-family: 'Meticula';
  src: url('./meticula.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*{
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Meticula', sans-serif;
}
body{
    background: url(../images/bg1.png) 0 0 repeat;
}
#loaderDiv{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999;
    background: #eaebeb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HTML: <div class="loader"></div> */
.loader {
  color: #000;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
  transform: translateX(-38px);
  animation: l21 .5s infinite alternate linear;
}

@keyframes l21 {
  50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
  100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
}


#wrapper{
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.imgLoad{
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 65px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.logo h2{ 
    font-size: 48px;
    color: #fd1a19;
    text-transform: uppercase;
    text-align: center;
}
.logo p{ 
    font-size: 24px;
    line-height: 1.2;
    color: #3f3f3f;
    text-align: center;
    text-transform: uppercase;
    padding-top: 10px;
}
.logo p span{
    display: block;  
}
.voteBtn{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}
#voteBtn{
    background: url(../images/buttonBg.png) 0 0 no-repeat;
    background-size: 100% !important;
    width: 484px;
    height: 481px;
    border: none;
}
/* #voteBtn:active {
    background: url(../images/buttonBgHvr.png) no-repeat;
    background-size: 100%;
}

#voteBtn:disabled {
    background: url(../images/buttonBgDis.png) no-repeat !important;
    background-size: 100% !important;
    cursor: not-allowed;
} */


.voteBtnActive {
    background: url(../images/buttonBgHvr.png) no-repeat !important;
    background-size: 100% !important;
}
.voteBtnDisabled {
    background: url(../images/buttonBgDis.png) no-repeat !important;
    background-size: 100% !important;
    cursor: not-allowed;
}

.voteTotal{
    padding: 0 24px;
    padding-bottom: 65px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.voteTotal p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: #3f3f3f;
    text-align: center;
}
.voteTotal p#status{
    font-size: 18px;
    padding-top: 10px;
}

.voteTotal p span i{
    font-style: normal;
    width: 30px;
    text-align: right;
    display: inline-block;
}

.resetBtn{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.resetBtn iframe{
    border: 0;
    width: 100%;
}

@media (max-width: 800px) {
body{
    background: url(../images/bg.png) 0 0 repeat;
}
.logo{
    padding-top: 41px;
}
#voteBtn{
    width: 284px;
    height: 282px;
}
.logo img{
    width: 180px;
} 
.voteTotal p{
    font-size: 28px;
}

.voteTotal p#status{
    font-size: 14px;
}
.voteTotal {
    height: 95px;
    padding: 0 24px;
    padding-bottom: 35px;
}
.logo h2 {
    font-size: 26px;
}
.logo p{
    font-size: 14px;
    padding-top: 10px;
    line-height: 1.2;
}
}