@import url('https://fonts.googleapis.com/css?family=Lobster|Open+Sans');

body {
  background: #444;
  font-family: 'Open Sans', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.app {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #096;
  transition: opacity .3s ease-in-out;
}

.fadeout.app {
  opacity: 0;
}

  .pokes {
    height: 100%;
  }

    .owl-stage-outer,
    .owl-stage,
    .owl-item {
      height: 100%;
    }

      .poke {
        position: absolute;
        top: 60px;
        bottom: 60px;
        left: 30px;
        right: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #fff;
        font-family: 'Lobster', cursive;
        font-size: 220px;
        cursor: default;
        border-radius: 30px;
      }

        .poke .text {
          width: 240px;
          height: 240px;
          color: #fff;
          text-shadow: none;
          font-size: 100px;
          line-height: 240px;
          background: #aaa;
          border-radius: 100%;
          text-align: center;
        }

.question-btn {
  position: absolute;
  left: 9px;
  bottom: 7px;
  z-index: 1;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
}

.question-btn:link,
.question-btn:hover,
.question-btn:visited,
.question-btn:active {
  color: #fff;
}


.help-modal {
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  overflow: hidden;
  background: #efefef;
}

.help-modal.active {
  height: 100%;
  opacity: 1;
  pointer-events: auto;
}
  
  .modal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
  }
  
  .help-content {
    margin: 100px 80px 0 80px;
  }
  
  .helps {}
    
    .help-item {}
      
      .help-item img {
        width: 100%;
        border: 6px solid #fff;
        border-radius: 3px;
      }
      
      .help-item .text {
        margin-top: 10px;
        margin-bottom: 30px;
        text-align: center;
      }
      
.copyright {
  color: #fff;
  position: absolute;
  right: 7px;
  bottom: 12px;
  opacity: .5;
  font-size: 12px;
}