.shuffleMedium-move {
  transition: transform 1s;
}

.deck {
  display: flex;
  flex-wrap: wrap;
}

.card {
  width: 100px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 2px;
  cursor: pointer;
}

.cardGameWrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.cardGameWrapper * {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
}
@media (min-width: 576px) {
  .cardGameWrapper {
    font-size: 18px;
  }
}
.cardGameWrapper[v-clock] {
  display: none;
}
.cardGameWrapper .gameBackground {
  background-image: url("images/background.png");
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cardGameWrapper .gameBackground:before {
  content: "";
  background: rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}
.cardGameWrapper .gameContent {
  position: relative;
  z-index: 1;
  padding: 30px 12px;
  width: 100%;
}
@media (min-width: 576px) {
  .cardGameWrapper .gameContent {
    padding: 30px;
  }
}
.cardGameWrapper h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
  font-size: 24px;
}
.cardGameWrapper .button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #154D44;
  color: #F6E631;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  width: 240px;
  cursor: pointer;
  margin: auto auto 0;
  transition: 0.3s;
  border-radius: 8px;
  border: none;
}
.cardGameWrapper .button:hover {
  background: #F6E631;
  color: #154D44;
}
.cardGameWrapper .cards {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
@media (min-width: 576px) {
  .cardGameWrapper .cards {
    width: 74%;
  }
}
.cardGameWrapper .cards .card {
  width: 100px;
  height: 70px;
  position: relative;
  top: 0;
  cursor: pointer;
}
.cardGameWrapper .cards .card.selected {
  display: none;
}
.cardGameWrapper .cards .card .face {
  backface-visibility: hidden;
  background-color: #FFE205;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  height: 140px;
}
.cardGameWrapper .cards .card .face.back {
  box-sizing: border-box;
  padding: 2px;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 1s, left 0.5s, top 0.5s;
}
.cardGameWrapper .cards .card .face.back:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid black;
  background-image: url("images/card-cover.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.cardGameWrapper .cards .card:hover .face.back {
  top: calc(100px * -0.2);
}
.cardGameWrapper .cards .card:hover .face.back:before {
  background-image: url("images/card-cover-open.png");
}
.cardGameWrapper .cards.selectedAll .card {
  cursor: not-allowed;
}
.cardGameWrapper .cards.selectedAll .card .face.back {
  transition: 0.1s;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.8117647059);
}
.cardGameWrapper .cards.selectedAll .card:not(.selected) .face.back:hover {
  top: unset;
  filter: unset;
}
.cardGameWrapper .selectedCardsWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.cardGameWrapper .selectedCardsWrapper .selectedCards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
  width: 100%;
}
.cardGameWrapper .selectedCardsWrapper .selectedCards .card {
  background-color: white;
  border-radius: 5px;
  width: unset;
  padding: 8px;
  cursor: unset;
}
@media (min-width: 576px) {
  .cardGameWrapper .selectedCardsWrapper .selectedCards .card {
    margin-right: 10px;
  }
}
.cardGameWrapper .selectedCardsWrapper .selectedCards .card:last-child {
  margin-right: unset;
}
.cardGameWrapper .selectedCardsWrapper .selectedCards .card img {
  max-width: 250px;
}
.cardGameWrapper .firstPage .cardGameDescription {
  color: #F6E631;
  margin-bottom: 30px;
  white-space: pre-line;
  background-color: rgba(21, 77, 68, 0.7490196078);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .cardGameWrapper .firstPage .cardGameDescription {
    line-height: 135%;
  }
}
.cardGameWrapper .secondPage {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.cardGameWrapper .secondPage .cardTitle {
  display: flex;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  color: #F6E631;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cardGameWrapper .thirdPage img {
  max-width: 250px;
}
.cardGameWrapper .thirdPage .cardTitle {
  display: flex;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  color: #F6E631;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.cardGameWrapper .thirdPage .selectedCardWrapper {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .cardGameWrapper .thirdPage .selectedCardWrapper {
    justify-content: center;
    flex-wrap: unset;
  }
}
.cardGameWrapper .thirdPage .selectedCardWrapper .cardImage {
  background-color: white;
  border-radius: 5px;
  width: unset;
  padding: 8px;
  cursor: unset;
  margin: auto auto 30px;
  height: fit-content;
}
@media (min-width: 576px) {
  .cardGameWrapper .thirdPage .selectedCardWrapper .cardImage {
    margin: 0 30px 0 0;
  }
}
.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription {
  color: white;
  font-size: 1em;
}
.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription .label {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription .description {
  font-weight: 600;
}
.cardGameWrapper .thirdPage .buttonGroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.cardGameWrapper .thirdPage .buttonGroup .button {
  margin: 0 0 30px;
}
@media (min-width: 576px) {
  .cardGameWrapper .thirdPage .buttonGroup .button {
    margin-right: 30px;
  }
}
.cardGameWrapper .thirdPage .buttonGroup .button:last-child {
  margin-right: unset;
}
.cardGameWrapper .thirdPage .buttonGroup .button.pagination {
  max-width: 140px;
  font-size: 0.6em;
}
@media (min-width: 576px) {
  .cardGameWrapper .thirdPage .buttonGroup .button.pagination {
    max-width: unset;
    font-size: 0.8em;
  }
}
.cardGameWrapper .thirdPage .buttonGroup .button.pagination:nth-child(2) {
  margin-right: 0;
}
@media (min-width: 576px) {
  .cardGameWrapper .thirdPage .buttonGroup .button.pagination:nth-child(2) {
    margin-right: 10px;
  }
}

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