@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:400,700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Barlow Condensed", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0f0f0f;
  overflow: auto;
}

#load {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #0f0f0f;
}

.loader {
  height: 10vmin;
  left: 50%;
  margin: -5vmin 0 0 -5vmin;
  position: fixed;
  top: 50%;
  width: 10vmin;
}
.loader:before {
  animation: blueRoute 4s linear infinite;
  background-color: #09f;
  content: "";
  height: 5vmin;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 5vmin;
}
.loader:after {
  animation: pinkRoute 4s linear infinite;
  background-color: #f09;
  content: "";
  height: 5vmin;
  left: 5vmin;
  opacity: 0.5;
  position: absolute;
  top: 5vmin;
  width: 5vmin;
}

@keyframes blueRoute {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(5vmin, 0) rotate(90deg);
  }
  50% {
    transform: translate(5vmin, 5vmin) rotate(180deg);
  }
  75% {
    transform: translate(0, 5vmin) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
@keyframes pinkRoute {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5vmin, 0);
  }
  50% {
    transform: translate(-5vmin, -5vmin);
  }
  75% {
    transform: translate(0, -5vmin);
  }
  100% {
    transform: translate(0, 0);
  }
}
.cuidado {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #0f0f0f;
  text-align: center;
  color: white;
  font-size: 1.2em;
  line-height: 1.54em;
  padding: 50px 0px;
  overflow: auto;
}
.cuidado h1 {
  font-size: 70px;
  font-weight: bold;
  background: #ff0088;
}
.cuidado h4 {
  line-height: 1.54em;
}
.cuidado button {
  max-width: 200px;
  width: 95%;
  cursor: pointer;
  padding: 10px 0px;
  background: #0b92ac;
  color: white;
  border: 0px;
  margin: 20px 0px;
  font-size: 30px;
  font-weight: bolder;
}

#texto {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  color: white;
  text-shadow: 2px 2px 5px black;
  z-index: 999;
  left: 10px;
  display: none;
  top: 0;
  transition: 0.5s;
}

.aparecer {
  animation: cssAnimation 5s 0s forwards;
}

@keyframes cssAnimation {
  0% {
    opacity: 0;
    right: -100px;
  }
  10% {
    opacity: 1;
    right: 20px;
  }
  50% {
    opacity: 1;
    right: 20px;
  }
  90% {
    opacity: 0.5;
    right: 20px;
  }
  100% {
    opacity: 0;
    right: -100px;
  }
}
.cuidado > div {
  max-width: 1024px;
  width: 95%;
  margin: 0 auto;
}

[wm-flappy] {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1366px;
  max-height: 768px;
  margin: 0 auto;
  vertical-align: middle;
  background: url("../images/bg.gif") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

#modal-bg {
  width: 100%;
  height: 100vh;
  max-width: 1366px;
  max-height: 768px;
  text-align: center;
  display: none;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  color: white;
  background: #011418d3;
}

div input {
  max-width: 500px;
  width: 90%;
  z-index: 9999;
  padding: 10px 10px;
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
  border: 3px solid #00252f;
  border-radius: 5px;
  color: black;
  font-size: 20px;
  font-weight: bold;
}
div ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(0, 0, 0, 0.507);
  font-size: 20px;
  font-weight: bold;
}
div :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.507);
  font-size: 20px;
  font-weight: bold;
}
div ::placeholder {
  color: rgba(0, 0, 0, 0.507);
  font-size: 20px;
  font-weight: bold;
}
div #botoes {
  margin-top: 10px;
}
div #botoes button {
  cursor: pointer;
  margin: 5px;
  border-radius: 3px;
  font-weight: bold;
  padding: 10px 25px;
  border: 0;
  font-size: 15px;
  color: white;
}
div #botoes button:nth-child(1) {
  background: #0b92ac;
}
div #botoes button:nth-child(2) {
  background: #1f1f1f;
}

.score {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently*/
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 999;
  display: flex;
  align-items: baseline;
  align-content: flex-start;
}
.score span {
  font-size: 30px;
  padding-right: 10px;
  font-weight: bold;
  color: #0b92ac;
}
.score ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  text-shadow: 4px 4px #000000;
}
.score ul li {
  margin: 0;
  padding: 0;
}
.score ul li:nth-child(1) {
  font-size: 30px;
  color: #a3c1d3;
}
.score ul li:nth-child(2) {
  font-size: 25px;
  color: rgba(163, 193, 211, 0.746);
}
.score ul li:nth-child(3) {
  font-size: 20px;
  color: rgba(163, 193, 211, 0.609);
}

.passaro {
  position: absolute;
  width: 120px;
  left: calc(20% - 30px);
}

.par-de-barreiras {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.barreira {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.barreira .borda {
  height: 30px;
  width: 80px;
  background: white;
}

.barreira .corpo {
  height: 140px;
  width: 80px;
  background: white;
}

.progresso {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #a3c1d3;
  font-weight: bold;
  font-size: 70px;
  position: absolute;
  bottom: 10px;
  text-shadow: 4px 4px #000000;
  left: 20px;
  z-index: 100;
}

@media screen and (min-width: 500px) {
  .modal {
    width: 80%;
  }
}
@media screen and (min-width: 720px) {
  .modal {
    width: 60%;
  }
}
@media screen and (min-width: 1025px) {
  .modal {
    width: 50%;
  }
}

/*# sourceMappingURL=flappy.css.map */
