/* line 1026, app/assets/stylesheets/app.css */
.smartplay .main-banner, .smartplay .main-carousel .separator, .main-carousel .smartplay .separator {
  padding-top: 2em;
  padding-bottom: 1px;
  background-image: url("../images/smartplay/bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  overflow: hidden;
}

@media (max-width: 767px) {
  /* line 1034, app/assets/stylesheets/app.css */
  .smartplay .main-banner, .smartplay .main-carousel .separator, .main-carousel .smartplay .separator {
    padding-top: 4em;
  }
}

/* line 3618, app/assets/stylesheets/app.css */
#playfield-wrapper {
  display: inline-block;
  padding: 0;
  opacity: 1;
  margin: 20px 0 0;
  position: relative;
}

/* line 3625, app/assets/stylesheets/app.css */
.win-text {
  color: orange;
  font-size: 100px;
  font-weight: bold;
  height: 100%;
  left: 0;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 100%;
}

/* line 3636, app/assets/stylesheets/app.css */
#levels {
  display: block;
  width: 360px;
  margin: 20px auto 0;
  list-style: none;
  padding: 0;
  overflow: hidden;
}

/* line 3644, app/assets/stylesheets/app.css */
#levels li {
  float: none;
  display: inline-block;
  width: auto;
  border-radius: 10px;
  margin: 5px;
  background-color: #f7941d;
  padding: 4px;
  border-radius: 10px;
}

/* line 3654, app/assets/stylesheets/app.css */
#levels li:last-child {
  margin-right: 0;
}

/* line 3657, app/assets/stylesheets/app.css */
#levels li.selected {
  display: inline-block;
}

/* line 3659, app/assets/stylesheets/app.css */
#levels li.selected a {
  background-color: #e6a200;
}

/* line 3662, app/assets/stylesheets/app.css */
#levels li a {
  text-decoration: none;
  display: inline-block;
  border-top: solid 1px #FFC04D;
  border-radius: 10px;
  background-color: #fbc553;
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  color: #fff;
  padding: 5px 10px;
}

/* Card layout */
/* line 3676, app/assets/stylesheets/app.css */
.play-field,
.card {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

/* line 3683, app/assets/stylesheets/app.css */
.play-field {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  opacity: 1;
}

/* line 3689, app/assets/stylesheets/app.css */
.play-field td {
  padding: 5px;
}

/* line 3692, app/assets/stylesheets/app.css */
.smartplay .card {
  width: 90px;
  height: 90px;
  font-size: 64px;
  line-height: 90px;
  cursor: pointer;
}

/* line 3699, app/assets/stylesheets/app.css */
.flipper {
  position: relative;
  border: solid 1px #aaa;
  border-radius: 5px;
  background-color: #ffb400;
  text-align: center;
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 3px 1px #ccc;
  opacity: 1;
}

/* line 3710, app/assets/stylesheets/app.css */
.face {
  border: solid 1px #aaa;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  width: 80px;
  height: 80px;
  box-shadow: inset 0px 0px 4px #aaa;
  margin: 4px;
}

/* line 3720, app/assets/stylesheets/app.css */
.front {
  opacity: 0;
  color: #2B54BF;
  text-shadow: 1px 1px 1px white;
}

/* line 3725, app/assets/stylesheets/app.css */
.front img {
  width: 100%;
  vertical-align: top;
}

/* line 3729, app/assets/stylesheets/app.css */
.back {
  opacity: 1;
  background: url(../images/logo.png) no-repeat #fff;
  background-size: 50%;
  background-position: center center;
}

/* line 3735, app/assets/stylesheets/app.css */
.clicks {
  position: absolute;
  right: 3px;
  bottom: 2px;
  color: #777;
  font: bold 11px Arial;
}

/* Card animation */
/* line 3743, app/assets/stylesheets/app.css */
.card {
  perspective: 100;
  -webkit-perspective: 100;
  -moz-perspective: 100;
}

/* line 3748, app/assets/stylesheets/app.css */
.flipper {
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.15s linear;
}

/* line 3754, app/assets/stylesheets/app.css */
.face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
}

/* line 3760, app/assets/stylesheets/app.css */
.flipfront {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  box-shadow: -1px 1px 3px 1px #ccc;
}

/* line 3765, app/assets/stylesheets/app.css */
.flipback {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
}

/* line 3769, app/assets/stylesheets/app.css */
.front {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}

@-moz-keyframes pulse {
  from {
    background-color: #fff;
  }
  to {
    background-color: orange;
  }
}

@-webkit-keyframes pulse {
  from {
    background-color: #fff;
  }
  to {
    background-color: orange;
  }
}

@keyframes pulse {
  from {
    background-color: #fff;
  }
  to {
    background-color: orange;
  }
}

/* line 3791, app/assets/stylesheets/app.css */
.pulse {
  -moz-animation: pulse 0.2s ease-in-out 5 alternate;
  -webkit-animation: pulse 0.2s ease-in-out 5 alternate;
  animation: pulse 0.2s ease-in-out 5 alternate;
}

/* line 3796, app/assets/stylesheets/app.css */
.play-field.win td .flipper {
  -webkit-transition: opacity 0.5s ease 1.5s;
  transition: opacity 0.5s ease 1.5s;
  opacity: 1 !important;
}

/* line 3801, app/assets/stylesheets/app.css */
.win-text {
  opacity: 0;
  z-index: -1;
  font-size: 0;
  margin-top: 0;
  text-shadow: -1px -1px #C18005, 1px -1px #C18005, -1px 1px #C18005, 1px 1px #C18005;
  -webkit-transition: all 1.5s ease-out 0.5s;
  transition: all 1.5s ease-out 0.5s;
}

/* line 3810, app/assets/stylesheets/app.css */
#playfield-wrapper.win .win-text {
  font-size: 27px;
  opacity: 1;
  z-index: 1;
  margin-top: -60px;
}

/* line 3816, app/assets/stylesheets/app.css */
.board-game {
  width: 600px;
  padding: 30px 30px 60px;
  background-color: #fff;
  margin: auto;
  margin-bottom: 10em;
  border-radius: 20px;
}

/* line 3824, app/assets/stylesheets/app.css */
.board-title {
  margin-top: -70px !important;
  max-width: 300px;
}

/* line 3828, app/assets/stylesheets/app.css */
#game-info {
  margin-top: 15px;
}

/* line 3831, app/assets/stylesheets/app.css */
#game-info {
  position: absolute;
  background: #fff;
  width: 200px;
  border: 2px solid;
  border-radius: 10px;
  margin: 0 auto;
  top: 0;
  bottom:0;
  left: 0;
  right: 0;
  padding: 10px 0 2px 0;
  font-size: 16px;
  display: none;
}

/* line 3843, app/assets/stylesheets/app.css */
#game-info span {
  font-size: 30px;
}

@media (max-width: 767px) {
  /* line 3847, app/assets/stylesheets/app.css */
  #levels {
    display: inline-block;
    width: auto;
  }
  /* line 3850, app/assets/stylesheets/app.css */
  #playfield-wrapper {
    width: 100%;
  }
  /* line 3852, app/assets/stylesheets/app.css */
  #playfield-wrapper table {
    margin: 0 auto;
  }
  /* line 3854, app/assets/stylesheets/app.css */
  #levels {
    margin-top: 5px;
  }
  /* line 3856, app/assets/stylesheets/app.css */
  #levels li {
    margin-right: 5px;
  }
  /* line 3858, app/assets/stylesheets/app.css */
  #levels li a {
    font-size: 14px;
  }
  /* line 3860, app/assets/stylesheets/app.css */
  .board-game {
    width: 95%;
    padding: 15px 15px 30px;
  }
  /* line 3863, app/assets/stylesheets/app.css */
  .board-title {
    max-width: 230px;
  }
  /* line 3865, app/assets/stylesheets/app.css */
  .smartplay .card {
    width: 60px;
    height: 60px;
  }
  /* line 3868, app/assets/stylesheets/app.css */
  .face {
    width: 50px;
    height: 50px;
  }
}