<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.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 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background: white;
}

@media (min-width: 576px) {
    .cardGameWrapper {
        font-size: 18px;
    }
}

.cardGameWrapper[v-clock] {
    display: none;
}

.cardGameWrapper .gameBackground {
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(3px);
}

.cardGameWrapper .gameBackground:before {
    content: "";
    background: #51c364;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
}

@media (min-width: 576px) {
    .cardGameWrapper .gameBackground {
        background: url("images/ciganykartya-borito.jpg");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
    }
}

.cardGameWrapper .gameContent {
    position: relative;
    z-index: 1;
    padding: 20px 10px;
    width: 100%;
}

.cardGameWrapper h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
    color: #faf1e7;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.cardGameWrapper .button {
    background: #f69431;
    border: 1px solid #f1c70b;
    color: #faf1e7;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 2px;
    padding: 10px 20px;
    display: flex;
    margin: auto;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.cardGameWrapper .button:hover {
    background: #ed7700;
    border: 1px solid #f1c70b;
}

.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: 95%;
    }
}

.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: #dedede;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
    height: 125px;
}

.cardGameWrapper .cards .card .face.back {
    box-sizing: border-box;
    padding: 5px;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 1s, left 0.5s, top 0.5s;
    box-shadow: 0 0 30px 5px #ffffffcf;
}

.cardGameWrapper .cards .card .face.back:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 2px solid #d1d1d1;
    background-image: url("images/ciganykartyaCover.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.cardGameWrapper .cards .card:hover .face.back {
    top: calc(100px * -0.2);
    filter: brightness(0.6);
}

.cardGameWrapper .cards.selectedAll .card {
    cursor: not-allowed;
}

.cardGameWrapper .cards.selectedAll .card .face.back {
    transition: 0.1s;
    box-shadow: 0 0 30px 5px #000000cf;
}

.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: #dadada;
    box-shadow: 0 0 30px 5px #ffffffcf;
    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: #faf1e7;
    margin-bottom: 30px;
    line-height: 150%;
    white-space: pre-line;
}

@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: bold;
    color: #faf1e7;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cardGameWrapper .thirdPage img {
    max-width: 250px;
}

.cardGameWrapper .thirdPage .cardTitle {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: bold;
    color: #faf1e7;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.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: #dadada;
    box-shadow: 0 0 30px 5px #ffffffcf;
    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: unset;
        margin-right: 20px;
    }
}

.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription {
    color: white;
    font-size: 1em;
}

.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription .label {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription .description {
    line-height: 150%;
}

@media (min-width: 768px) {
    .cardGameWrapper .thirdPage .selectedCardWrapper .cardTitleAndDescription .description {
        line-height: 135%;
    }
}

.cardGameWrapper .thirdPage .buttonGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.cardGameWrapper .thirdPage .buttonGroup .button {
    margin: unset;
    margin-bottom: 30px;
    margin-right: 10px;
}

.cardGameWrapper .thirdPage .buttonGroup .button:last-child {
    margin-right: unset;
}

.cardGameWrapper .thirdPage .buttonGroup .button.disable {
    color: #9690a6;
    background: unset;
    border: 1px solid #9690a6;
    cursor: not-allowed;
    pointer-events: none;
}

.cardGameWrapper .thirdPage .buttonGroup .button.disable:hover {
    filter: 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;
    }
}

.cardGameWrapper .thirdPage .buttonGroup .button.newGame {
    width: 100%;
    text-align: center;
    justify-content: center;
    max-width: 300px;
    margin: 50px auto;
}

@media (min-width: 768px) {
    .cardGameWrapper .thirdPage .buttonGroup .button.newGame {
        width: unset;
        text-align: unset;
        justify-content: unset;
        max-width: unset;
        margin: unset;
        margin-bottom: 30px;
        margin-right: 10px;
    }
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>