
/* 
 Theme Name:     Design Base
 Template:       Divi
 Version:        1.0 
*/ 
body{
background: rgb(99, 182, 219);
background: -moz-linear-gradient(top, rgba(99, 182, 219, 1) 0%, rgba(48, 157, 207, 1) 100%);
background: -webkit-linear-gradient(top, rgba(99, 182, 219, 1) 0%, rgba(48, 157, 207, 1) 100%);
background: linear-gradient(to bottom, rgba(99, 182, 219, 1) 0%, rgba(48, 157, 207, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b6db', endColorstr='#309dcf', GradientType=0);
}
@font-face {
    font-family: 'Memimas';
    src: url('/fonts/MemimasAltBold.woff2') format('woff2'),
        url('/fonts/MemimasAltBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    font-size: 1.3rem;
}

/* CSS */
.button-primary {
    background-color: #0078d0;
    border: 0;
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Memimas',system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    font-size: 36px;
    font-weight: 600;
    outline: 0;
    padding: 16px 21px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-primary:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 125px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 92%;
}

.button-primary:hover {
    box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
    transform: scale(1.05);
}

.button-primary.respondeu:hover {
 transform: scale(1.00);
}
.button-primary.respondeu.certo{
    background-color: #188B00;
}
.button-primary.respondeu.errado{
    background-color: #9D1400;
}

.qwrap {
    position:relative;
    padding: 0px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.question {
    line-height: 130%;
    text-align: center;
}

.ra {
    position: relative;
}

.button-primary.resposta {
    min-width: 100px;
    font-size: 30px;
    padding: 10px;
    margin: 8px;
}
.respostas{position:relative;}
.resposta {position: relative}
.respostaResult,.ganhou_moeda {
    position: absolute;
    top: 0%;
    left: 40%;
    z-index: 20;
    transform: translateX(-50%) translateY(-50%);
}
#continuar{padding:15px;position:absolute;bottom:0;right:0%;display:none;}
#continuar img{max-width:100px;}
.ganhou_moeda {
    left: 50%;    
    display:none;
}
.coins{position:relative;width:100%;text-align:center;}
.smallCoin{max-width:30px;margin:4px 15px;}
.respostaResult img{ max-width: 80px;}
.ganhou_moeda img{ max-width: 100px;}

/*overlay*/
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.60);
    z-index:999999;
    display:none;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/*overlay ends*/
@media (min-width: 768px) {
    .button-primary {
        padding: 16px 48px;
    }
}