@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400&display=swap');

html,
body {
     height: 100%;
}

body {
    width: 100%;
    color: #515151;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    background: url(../imagens/fundo.jpg) top center no-repeat;
    background-size: cover;
}

a {
    color: #2a75ac;
}
a:hover {
    color: #1e5883;
    text-decoration: none;
}

b {
    font-weight: bold;
}

h2 {
    text-transform: uppercase;
    color: #2a75ac;
    font-size: 1.8em;
    font-weight: bold;
}

h3 {
    font-weight: normal;
    color: #2a75ac;
    font-size: 1.2em;
    text-transform: uppercase;
}
h3 a {
    color: #82c34d;
}

p {
     font-size: 1.1em;
}

.img-hover-zoom {
  height: 300px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}

/* Zoom-n-rotate Container */
.img-hover-zoom--zoom-n-rotate img {
  transition: transform .5s ease-in-out;
}

/* The Transformation */
.img-hover-zoom--zoom-n-rotate:hover img {
  transform: scale(1.5) rotate(10deg);
}

.btn-primary {
    background: #82c34d;
    text-align: center;
    border: none;
    padding: 8px 25px 6px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #c6eca7;
    border-color: #c6eca7;
}

.loading {
    font-size: 1em;
    margin-left: 10px;
    display: none;
}

.parsley-errors-list {
     margin: 0;
     padding: 0;
     list-style: none;
}
.parsley-errors-list li {
     margin: 0;
     padding: 0;
     color: #aa0000;
     text-align: left;
}

.form-erro,
.form-sucesso {
     display: none;
}

.box {
     padding: 40px;
     background: #ffffff;
     -webkit-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.5);
     -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.5);
     box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.5);
     border-radius: 30px;
}
.game-box {
     border: 10px solid #82c34d;
     border-radius: 20px;
}

#memory {
	position:relative;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#memory .carta {
     padding: 3px;
}
#memory .carta div {
	-webkit-box-shadow: 1px 1px 2px 1px #ccc;
	-moz-box-shadow: 1px 1px 2px 1px #ccc;
	box-shadow: 1px 1px 2px 1px #ccc;
	cursor:pointer;
}
#memory .carta div.solved {
	cursor:default;
}
#memory .carta div:hover {
	-webkit-box-shadow: 0px 0px 1px 0px #444;
	-moz-box-shadow: 0px 0px 1px 0px #444;
	box-shadow: 0px 0px 1px 0px #444;
}
#memory .carta div {
	background:#f8f8f8 url('../imagens/carta.jpg') no-repeat;
     background-size: cover;
	border: 5px solid #fff;
     border-radius: 10px;
	width:100%;
}
#memory .carta div img {
	opacity: 0;
}

#erros-imagem {
     position: relative;
}
#erros .spot {
     position: absolute;
     height: 0;
}
#erros .spot img {
     opacity: 0;
     width: 100%;
}
#erros-imagem #papelao {
     width: 11%;
    padding-bottom: 11%;
    top: 20%;
    left: 18%;
}
#erros-imagem #celular {
     width: 11%;
    padding-bottom: 11%;
    top: 33%;
    left: 33%;
}
#erros-imagem #mascara {
     width: 12%;
    padding-bottom: 12%;
    top: 59%;
    left: 53%;
}
#erros-imagem #cigarro {
     width: 10%;
    padding-bottom: 10%;
    top: 24%;
    left: 59%;
}
#erros-imagem #corrimao {
     width: 10%;
    padding-bottom: 10%;
    top: 15%;
    left: 73%;
}
#erros-imagem #faixa {
     width: 18%;
    padding-bottom: 18%;
    top: 47%;
    left: 69%;
}
#erros-imagem #epi {
     width: 12%;
    padding-bottom: 12%;
    top: 50%;
    left: 88%;
}


#quiz .inputGroup {
     background-color: #fff;
     display: block;
     margin: 10px 0;
     position: relative;
}
#quiz .inputGroup label {
     padding: 12px 60px 12px 10px;
     width: 100%;
     display: block;
     text-align: left;
     color: #3C454C;
     cursor: pointer;
     position: relative;
     z-index: 2;
     -webkit-transition: color 200ms ease-in;
     transition: color 200ms ease-in;
     overflow: hidden;
}
#quiz .inputGroup label:before {
     width: 15px;
     height: 10px;
     border-radius: 50%;
     content: '';
     background-color: #2a75ac;
     position: absolute;
     left: 50%;
     top: 50%;
     -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
     transform: translate(-50%, -50%) scale3d(1, 1, 1);
     -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
     transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
     opacity: 0;
     z-index: -1;
}
#quiz .inputGroup label:after {
     width: 32px;
     height: 32px;
     content: '';
     border: 2px solid #D1D7DC;
     background-color: #fff;
     background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
     background-repeat: no-repeat;
     background-position: 2px 3px;
     border-radius: 50%;
     z-index: 2;
     position: absolute;
     right: 15px;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     cursor: pointer;
     -webkit-transition: all 200ms ease-in;
     transition: all 200ms ease-in;
}
#quiz .inputGroup input:checked ~ label {
     color: #fff;
}
#quiz .inputGroup input:checked ~ label:before {
     -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
     transform: translate(-50%, -50%) scale3d(56, 56, 1);
     opacity: 1;
}
#quiz .inputGroup input:checked ~ label:after {
     background-color: #82c34d;
     border-color: #82c34d;
}
#quiz .inputGroup input {
     width: 32px;
     height: 32px;
     -webkit-box-ordinal-group: 2;
     order: 1;
     z-index: 2;
     position: absolute;
     right: 30px;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     cursor: pointer;
     visibility: hidden;
}

#esteira .box {
     /* max-height: 720px; */
}
#animation_container,
#esteira canvas {
     width: 100% !important;
     height: auto !important;
}

.ranking {
     cursor: pointer;
position: relative;
padding: 1rem 0.5rem;
border-radius: 3.75rem;
line-height: 2.5rem;
font-size: 1.6rem;
font-weight: 600;
/* border: 1px solid #82c34d; */
background-image: linear-gradient(-180deg, #2cdc52 0%, #82c34d 100%);
box-shadow: 0 1rem 1.25rem 0 rgb(22 195 50 / 50%), 0 -0.25rem 1.5rem rgb(85 172 42) inset, 0 0.75rem 0.5rem rgba(255,255,255, 0.4) inset, 0 0.25rem 0.5rem 0 rgb(5 14 23) inset;
}

.ranking a {
     color: transparent;
    background-image:linear-gradient(0deg, #7cb334 0%, #FEFAFD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 2px hsla(290, 100%, 20%, 1));
}

.ranking::before {
	content: "";
	display: block;
	height: 0.25rem;
	position: absolute;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 7.5rem);
	background: #fff;
	border-radius: 100%;

	opacity: 0.7;
	background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}

.ranking::after {
	content: "";
	display: block;
	height: 0.25rem;
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 7.5rem);
	background: #fff;
	border-radius: 100%;

	filter: blur(1px);
	opacity: 0.05;
	background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}


footer {
     /* position: absolute;
     bottom: 0; */
     width: 100%;
     height: 60px;
     line-height: 60px;
     color: #212121;
}


/* Timer */
.base-timer {
  position: relative;
  width: 100%;
  height: 100%;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-align: center;
  line-height: 20px;
  color: #808080;
}

.base-timer__label p {
  flex-direction: column;
  margin: 0;
}

.base-timer__label .pontos {
  font-size: 13px;
  color: #2a75ac;
}

.base-timer__label .pontos b {
  font-size: 32px;
  text-transform: uppercase;
}


/* Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
     #memory .carta {
     	padding: 10px;
     }
     #memory .carta div {
     	border: 15px solid #fff;
     }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

@media (min-width: 1500px) {

}
