:root {
    --darkgreen: #306259;
    --lightgreen: #899E8F;
    --darkergreen: #203526;
    --lightergreen: #D6ECDC;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background-color: white;
    color: var(--darkgreen);
}

.body-wrapper {
    height: 100%;
    width: 100%;
    /* overflow: hidden; */
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 96px;
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 40px;
}

h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
}

h5 {
    font-weight: 600;
    font-size: 16px;
}

h6 {
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    margin: 20px 0 0;
}

p,
li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0;
}

li {
    margin: 0;
    margin-left: 16px;
}

ul {
    margin-bottom: 20px;
}

section {
    margin: 120px 0;
    padding: 0 20px;
    position: relative;
}

.primary-link,
.submitButton {
    padding: 14px 22px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    border-radius: 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    background-color: var(--darkgreen);
    border: 1px solid var(--darkgreen);
    color: white;
    outline: none;
    white-space: nowrap;
}


.primary-link svg {
    margin-left: 10px;
    fill: white;
    width: 12px;
    transition: transform 0.3s;
}

.primary-link svg path {
    transition: fill 0.3s;
    fill: white;
}

.primary-link.light {
    background-color: var(--lightergreen);
    border: 1px solid var(--lightergreen);
    color: var(--darkgreen);
}

.primary-link.light svg path {
    fill: var(--darkgreen);
}

.primary-link:hover,
.submitButton:hover {
    color: white;
}

.primary-link.light:hover {
    background-color: var(--darkgreen);
    color: white;
}

@media (min-width: 1080px) {

    .primary-link:hover,
    .submitButton:hover,
    .btn-primary:not(:disabled):not(:disabled):hover,
    .btn-primary:not(:disabled):not(:disabled):active,
    .btn-primary:not(:disabled):not(:disabled):focus {
        background-color: white;
        color: var(--darkgreen);
    }

    .primary-link:hover svg {
        transform: translateX(5px);
    }

    .primary-link:hover svg path {
        fill: var(--darkgreen);
    }

    .primary-link.light:hover {
        background-color: white;
        color: var(--darkgreen);
    }
}

.form-control:focus,
.btn-primary:not(:disabled):focus,
.btn-primary:not(:disabled):active,
.btn-primary:not(:disabled):hover,
.btn-primary:not(:disabled):active:focus,
.btn-primary:not(:disabled):hover:focus {
    border-color: var(--darkgreen) !important;
    box-shadow: none !important;
}

.btn-primary:hover {
    background-color: var(--darkgreen);
}

::selection {
    background: #477169;
    color: white;
}

::-moz-selection {
    background: #477169;
    color: white;
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--darkgreen);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--gray);
}

.rccookie-modal .modal-content {
    border-radius: 15px;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--darkgreen) !important;
    border-color: var(--darkgreen) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--darkgreen) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--gray);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--darkgreen);
    border-color: var(--darkgreen) !important;
    color: white;
}

.sliderMask {
    border-color: var(--darkgreen) !important;
    background-color: var(--darkgreen) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--darkgreen);
    background-color: var(--darkgreen) !important;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

.submitButton,
.btn-warning {
    background-color: var(--darkgreen);
    border: 2px solid var(--darkgreen);
    color: white;
    font-weight: 500;
}

.submitButton:hover,
.btn-warning:hover {
    background-color: white;
    color: var(--darkgreen);
    border: 2px solid var(--darkgreen);
}

.submitButton:focus,
.btn-warning:focus {
    background-color: white;
    color: var(--darkgreen);
    border: 2px solid var(--darkgreen);
    outline: none !important;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--darkgreen);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--darkergreen);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 15px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFFAA;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.desktop-navbar .logo {
    width: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-navbar .logo img {
    width: 100%;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1280px;
}

.desktop-navbar .container .links {
    margin-top: 0;
}

.desktop-navbar .nav-item {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

.desktop-navbar .nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--darkergreen);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.desktop-navbar .nav-item:hover::after {
    transform: scaleX(1);
}

.desktop-navbar .right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-navbar .right svg {
    height: 30px;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 360px;
    background-color: #FFFFFFAA;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translateY(35px);
    opacity: 1;
}

.desktop-modal::before {
    content: '';
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    right: 75px;
    width: 40px;
    height: 20px;
    background: #FFFFFFAA;
    background-color: #FFFFFFAA;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.desktop-modal .cancel {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 9px;
    cursor: pointer;
    width: 36px;
}

.desktop-modal h3 {
    text-align: center;
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 20px;
}

.desktop-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    gap: 0;
}

.desktop-modal form input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--lightgreen);
    background-color: #FFFFFFAA;
    border-radius: 15px;
    margin-bottom: 10px;
    line-height: 1;
}

.desktop-modal .primary-link,
.desktop-modal.login-modal .primary-link.light {
    margin: 0 auto;
}

.desktop-modal.login-modal .primary-link {
    margin: 15px auto;
    font-size: 16px;
}

.desktop-modal.login-modal .lostpassword {
    text-align: center;
    font-size: 14px;
}

.desktop-modal.login-modal .logged-in a {
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
    text-align: center;
}

.desktop-modal.login-modal .logged-in a:last-of-type {
    margin-bottom: 0;
}

.desktop-navbar a.new,
#sidebar .links .nav-item.new {
    position: relative;
    width: fit-content;
}

.desktop-navbar a.new::before,
#sidebar .links .nav-item.new::before {
    content: "";
    position: absolute;
    top: 2px;
    right: -6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cc0000;
}

#sidebar .links .nav-item.new::before {
    top: 22px;
    right: -7px;
}

.desktop-modal hr {
    border-top: 1px solid var(--lightgreen);
    margin: 15px 0;
}

.desktop-modal.basket-modal::before {
    right: 16px;
}

.desktop-modal.basket-modal h3 {
    margin-bottom: 10px;
}

.desktop-modal.basket-modal .list {
    max-height: 40vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.desktop-modal.basket-modal .list .item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--lightgreen);
}

.desktop-modal.basket-modal .list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.desktop-modal.basket-modal .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.desktop-modal.basket-modal .content h4 {
    font-size: 16px;
    margin: 0;
}

.desktop-modal.basket-modal .numbers {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.desktop-modal.basket-modal .list span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.desktop-modal.basket-modal .price {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.desktop-modal.basket-modal .summary {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.desktop-modal.basket-modal .summary .price {
    font-size: 18px;
}

.desktop-modal.basket-modal .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.desktop-modal.basket-modal .buttons .primary-link.yellow {
    margin-bottom: 15px;
}

.desktop-modal .buttons {
    display: flex;
    flex-direction: column;
}

/* FŐOLDAL */

/* .main-page section,
.main-page footer {
    position: absolute;
    bottom: -115vh;
    left: 0;
    width: 100%;
    height: 100%;
    transition: bottom 0.55s cubic-bezier(.06, .41, .28, 1);
    padding: 0 20px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
} */

/* .main-page section.active,
.main-page footer.active {
    bottom: 0;
} */

/* .main-page .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 70px;
} */

/* .spacer {
    height: 999999vh;
} */

.games-table {
    position: fixed;
    bottom: 0;
    right: 50%;
    width: 100%;
    max-width: 1280px;
    transform: translateX(50%);
    z-index: 995;
    transition: bottom 1s;
}

.games-table.hidden {
    bottom: -100%;
}

.games-table .tables {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15vw;
}

.games-table .tables::before {
    content: "";
    position: absolute;
    top: -2vw;
    right: 50%;
    width: 1vw;
    border-radius: 10px;
    background-color: white;
    height: calc(100% + 3vw);
}

.games-table .tables .item {
    display: block;
    width: 100%;
    background-color: var(--lightergreen);
    border-radius: 10px 10px 20px 20px;
    padding: 0.7vw;
    margin-bottom: 1.4vw;
    transition: background-color 0.3s;
}

.games-table .tables .item:last-of-type {
    margin-bottom: 40px;
}

.games-table .tables .item:hover {
    background-color: var(--darkgreen);
}

.games-table .tables .item p {
    text-align: center;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    transition: color 0.3s;
}

.games-table .tables .item:hover p {
    color: white;
}

.games-table .tables .item:nth-of-type(2n) {
    transform: rotate(3deg);
}

.games-table .tables .item:nth-of-type(2n+1) {
    transform: rotate(-3deg);
}

.main-page section {
    margin: 0;
    padding: 85px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.main-page section.hero {
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero .bg,
.hero-2 .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    position: relative;
    display: block;
}

.hero::after,
.hero-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.parallax {
    position: absolute;
    pointer-events: none;
}

.hero .tower {
    bottom: 0;
    left: 50%;
    height: 80vh;
    transform: translateX(-40%);
}

.hero .wood-left {
    bottom: 0;
    left: 0;
    height: 38vh;
}

.hero .wood-right {
    bottom: 0;
    right: -5vw;
    width: 66vw;
}

.hero h1 {
    position: absolute;
    z-index: 2;
    top: 25vh;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    max-width: 700px;
}

.main-page section.hero-2 {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero-2 .content {
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    width: 100%;
}

.hero-2 .content h2 {
    font-size: 65px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 40px;
    max-width: 540px;
    text-align: center;
}

.hero-2 .primary-link {
    margin: 0 auto;
}

.hero-2 .tower {
    bottom: 0;
    left: 50%;
    height: 83vh;
    transform: translateX(-20%);
}

.hero-2 .wood-left {
    bottom: 0;
    left: 0;
    height: 38vh;
}

.hero-2 .wood-right {
    bottom: 0;
    right: -5vw;
    width: 66vw;
}

.main-page section.recommended {
    background-color: white;
    margin: 0;
}

.recommended .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 250px;
    margin-bottom: 20px;
}

.recommended .content p {
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    max-width: 45%;
    padding-right: 50px;
    font-weight: 500;
}

.recommended .content p::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-right-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.container .links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.main-page section.details {
    background-color: var(--darkgreen);
    color: white;
    padding: 85px 20px 25vh;
}

.details .wood-left {
    bottom: 0;
    left: -5vh;
    height: 36vh;
}

.details .wood-right {
    bottom: -5vh;
    right: 0;
    height: 32vh;
}

.details .container .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.details .container .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 3 - 60px);
}

.details .container .item img {
    height: 50px;
    margin-bottom: 30px;
}

.details .container .item p {
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

.informations {
    background-color: var(--lightergreen);
}

.informations .container {
    max-width: 950px;
    padding-bottom: 25vh;
}

.informations .links {
    margin-top: 40px;
}

.informations .links .light {
    border-color: var(--darkgreen);
}

.informations .building {
    bottom: 0;
    left: 0;
    height: 40vh;
}

.informations .wood-left,
.informations .wood-right {
    bottom: 0;
    left: 0;
    height: 35vh;
}

.informations .wood-right {
    left: auto;
    right: 0;
}

.howto {
    background: white;
}

.howto h2 {
    margin-bottom: 20px;
}

.howto .items {
    max-width: 900px;
    margin: 0 auto;
}

.howto .items .item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 60px;
    position: relative;
}

.howto .items .item:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.howto .items .item::after {
    content: '';
    position: absolute;
    top: calc(100% - 40px);
    width: calc(100% - 118px);
    height: 70px;
}

.howto .items .item:nth-of-type(2n)::after {
    background: url('../images/line-right-left.png') no-repeat center center / contain;
    background-size: 100% 100%;
    right: 60px;
}

.howto .items .item:nth-of-type(2n+1)::after {
    background: url('../images/line-left-right.png') no-repeat center center / contain;
    background-size: 100% 100%;
    left: 58px;
}

.howto .items .item:last-of-type {
    padding-bottom: 0;
}

.howto .items .item:last-of-type::after {
    display: none;
}

.howto .items .item span {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    z-index: 1;
    margin-top: -5%;
}

.howto .items .item span::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 31px;
    height: 44px;
    background: url('../images/marker.png') no-repeat center center / contain;
    z-index: -1;
}

.howto .items .item p {
    max-width: 500px;
    margin-bottom: 0;
    margin-top: -12px;
}

.howto .links {
    margin-top: 40px;
}

.main-page section.games-map {
    background-color: white;
}

.games-map .container {
    position: relative;
}

.games-map h2 {
    margin-bottom: 25px;
}

.games-map .desc {
    font-size: 18px;
    display: none;
}

.games-map .wood-left {
    bottom: 0;
    left: 0;
    height: 32vh;
}

.games-map .wood-right {
    bottom: 0;
    right: 0;
    height: 32vh;
}

.games-map .places {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
}

.games-map .places .list {
    position: relative;
    width: 100%;
}

.games-map .places .mb-0 {
    white-space: nowrap;
}

.games-map .places .list .current {
    padding: 10px 15px;
    position: relative;
    border: 1px solid var(--darkgreen);
    border-radius: 10px;
    width: 340px;
    cursor: pointer;
}

.games-map .places .list .current::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../images/angle-down-green.svg') no-repeat center center / contain;
    transition: transform 0.3s;
}

.games-map .places .list.active .current::before {
    transform: translateY(-50%) rotate(180deg);
}

.games-map .places .list .current p,
.games-map .places .list .item p {
    margin-bottom: 0;
    font-size: 15px;
}

.games-map .places .list .current p span,
.games-map .places .list .item p span {
    font-weight: 600;
}

.games-map .places .list .items {
    position: absolute;
    z-index: 1;
    top: calc(100% + 10px);
    left: 0;
    width: 340px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s;
}

.games-map .places .list .items .item {
    background-color: white;
    border: 1px solid var(--darkgreen);
    padding: 0.5vw 0.75vw;
    cursor: pointer;
    margin-top: -1px;
    transition: background-color 0.3s, color 0.3s;
}

.games-map .places .list .items .item:hover {
    background-color: var(--darkgreen);
    color: white;
}

.games-map .places .list .items .item:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 0;
}

.games-map .places .list .items .item:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.games-map .map {
    position: relative;
    margin: 20px auto;
    max-width: 760px;
}

.games-map .map img {
    width: 100%;
}

.games-map .map .marker {
    position: absolute;
    transform: translateY(-100%);
    cursor: pointer;
}

.games-map .map .marker:hover {
    z-index: 1;
}

.games-map .map .marker span {
    background-color: var(--lightgreen);
    color: white;
    padding: 3px 14px 4px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
    clip-path: polygon(12% 0%, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    transition: background-color 0.3s, opacity 0.3s;
}

.games-map .map .marker:hover span {
    background-color: var(--darkgreen);
    opacity: 1;
}

.games-map .map .marker::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    width: 22px;
    height: 28px;
    background: url('../images/map-marker.svg') no-repeat center center / contain;
}

.games-map .primary-link {
    margin: 0 auto;
}

.games-details {
    background-color: white;
}

.games-details h2 {
    margin-bottom: 20px;
}

.games-details .nav-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1vw;
    /* overflow-x: auto; */
    position: relative;
    scrollbar-width: none;
}

.games-details .nav-line .border {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--lightergreen);
    z-index: -1;
}

.games-details .nav-line span {
    cursor: pointer;
    width: fit-content;
    text-align: center;
    padding: 0.5vw;
    color: var(--lightgreen);
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s, font-weight 0.3s;
    display: flex;
    align-items: flex-end;
}

.games-details .nav-line span:hover {
    color: var(--darkgreen);
}

.games-details .nav-line span.active {
    color: var(--darkgreen);
    border-color: var(--darkgreen);
    font-weight: 600;
}

.games-details .gameSwiper {
    max-width: 980px;
    margin: 0 auto;
}

.games-details .swiper-button-next {
    right: 0px !important;
}

.games-details .swiper-button-prev {
    left: 0px !important;
}

.games-details .game {
    background-color: var(--lightergreen);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.games-details .game .content {
    position: relative;
    padding: 40px;
    padding-bottom: 4vw;
    z-index: 1;
    background-color: #D6ECDCCC;
}

.games-details .game .image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.games-details .game h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.games-details .game p {
    font-weight: 500;
}

.games-details .game .numbers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    max-width: 670px;
    margin: 0 auto;
}

.games-details .game .numbers .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 25%;
}

.games-details .game .numbers .number img {
    height: 24px;
    margin-bottom: 10px;
}

.games-details .game .numbers .number p {
    font-weight: 500;
    margin-bottom: 0;
    white-space: nowrap;
}

.games-details .game .price {
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
}

.games-details .game .light {
    border-color: var(--darkgreen);
}

/* SWIPER */

.relative {
    position: relative;
}

.swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
    width: 20px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px !important;
    font-weight: 500;
    color: var(--darkgreen);
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

.main-page section.reviews {
    background-color: white;
    padding-bottom: 38vh;
}

.reviews .wood-left {
    bottom: 0;
    left: 0;
    height: 30vh;
}

.reviews .wood-right {
    bottom: 0;
    right: 0;
    height: 45vh;
    z-index: 2;
}

.reviews .relative {
    width: calc(100% - 70px);
    max-width: 850px;
    margin: 0 auto;
}

.reviews .swiper-wrapper {
    align-items: center;
}

.reviews .review {
    background-color: var(--lightgreen);
    color: white;
    padding: 40px 80px;
    border-radius: 10px;
}

.reviews .review .rating span {
    display: none;
}

.reviews .review .rating .stars {
    width: 190px;
    overflow: hidden;
    margin: 0 auto 20px;
    white-space: nowrap;
}

.reviews .review .rating .stars div {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background: url('../images/star-outline.svg') no-repeat center center / contain;
}

.reviews .review .rating .stars div.active {
    background: url('../images/star-full.svg') no-repeat center center / contain;
}

.reviews .review p.text {
    font-style: italic;
}

.reviews .review p.name {
    font-weight: 600;
    margin-bottom: 0;
}

.main-page section.voucher {
    background-color: var(--darkgreen);
    color: white;
    padding-bottom: 35vh;
}

.voucher .container {
    max-width: 950px;
}

.voucher .wood-left {
    bottom: 0;
    left: 0;
    height: 28vh;
}

.voucher .mobile,
.voucher .desktop {
    bottom: 0;
    left: 0;
    width: 100%;
}

.voucher .mobile {
    display: none;
}

.voucher p {
    max-width: 750px;
}

.voucher .primary-link {
    margin: 10px auto 0;
}

.main-page section.gyik {
    background-color: white;
    padding-bottom: 38vh;
    display: block;
    padding-top: 80px;
}

.gyik .container {
    display: block;
    position: relative;
    z-index: 2;
}

.gyik h2 {
    margin-bottom: 20px;
}

.gyik .wood-left {
    bottom: 0;
    left: 0;
    height: 30vh;
}

.gyik .wood-right {
    bottom: 0;
    right: 0;
    height: 40vh;
}

.gyik .building {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 32vh;
}

.gyik .items {
    padding: 0 20px;
    background-color: white;
    margin-left: -20px;
    width: calc(100% + 40px);
}

.gyik .items .item {
    border-bottom: 1.5px solid var(--lightgreen);
}

.gyik .items .item .header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}

.gyik .items .item .header p {
    font-weight: 600;
    margin-bottom: 0;
    padding-right: 20px;
    font-size: 15px;
}

.gyik .items .item .header img {
    min-width: 14px;
    transition: transform 0.4s;
}

.gyik .items .item.active .header img {
    transform: rotate(180deg);
}

.gyik .items .item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

/* CONTACT */

.main-page section.contact {
    position: relative;
    top: 0;
    z-index: 12;
    background-size: cover;
}

.contact {
    padding: 120px 20px;
    margin: 0;
    background-color: var(--lightergreen);
}

.contact .content {
    display: flex;
    gap: 120px;
    max-width: 950px;
    margin: 0 auto;
}

.contact .content .left {
    width: 43%;
}

.contact .content .left p {
    margin-bottom: 15px;
}

.contact .content form {
    width: 57%;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
}

form input,
form textarea,
form select {
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: white;
    color: var(--gray) !important;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    resize: none;
}

form input.required,
form textarea.required,
form select.required {
    border: 2px solid #b40000 !important;
}

form select {
    appearance: none;
    background-image: url("../images/angle-down-green.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

form .checks {
    margin: 15px 0;
}

.form-check {
    margin: 10px 0;
    margin-left: 37px;
    padding-left: 0 !important;
}

.form-group {
    margin-bottom: 0;
}

.form-group:first-of-type {
    margin-top: 20px;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -37px;
    margin-top: -1px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: var(--darkgreen);
}

.form-check-input+label::after {
    content: " ";
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -37px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    opacity: 1;
    top: -1px;
}

/* FOOTER */

footer {
    background-color: var(--darkgreen);
    color: white;
    position: relative;
}

footer .container {
    padding: 60px 25px;
}

footer .content {
    display: flex;
    justify-content: space-between;
}

footer .item img {
    width: 150px;
    margin-bottom: 20px;
}

footer .item {
    display: flex;
    flex-direction: column;
}

footer .item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
}

footer .item p,
footer .item a {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
}

footer .item a:hover {
    color: var(--lightergreen);
}

footer .item .simple img {
    width: 135px;
    margin: 30px 0;
}

footer .item:last-of-type a {
    display: inline;
    width: fit-content;
}

footer .socials {
    display: flex;
    gap: 12px;
    margin: 5px 0 20px;
}

footer .item a.facebook img {
    margin-bottom: 0;
    filter: invert(1);
}

footer .socials img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 0;
}


/* PRODUCT */

.fix-line {
    position: fixed;
    z-index: 995;
    top: -203px;
    background-color: var(--lightergreen);
    width: 100%;
    border-radius: 0 0 20px 20px;
    padding-top: 92px;
    padding-bottom: 20px;
    transition: top 0.5s cubic-bezier(.06, .41, .28, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.fix-line.active {
    top: 0;
}

.nav {
    font-weight: 700;
}

.nav a {
    margin: 0 8px;
}

.nav a:first-of-type {
    margin-left: 0;
}

.fix-line h2 {
    margin: 0;
    font-size: 24px;
    text-align: left;
}

.fix-line .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
}

hr {
    margin: 0;
    border-top: 1px solid var(--lightgreen);
}

.fix-line .container .links {
    margin-top: 0;
}

.fix-line .light {
    border-color: var(--darkgreen);
}

.product-1 {
    margin-top: 0;
    padding: 0;
}

.product-1 .nav {
    position: absolute;
    z-index: 1;
    top: 112px;
    left: 40px;
    color: white;
}

.product-1 .nav a {
    color: white;
}

.product-1 .container {
    display: flex;
    position: relative;
    max-width: 100%;
}

.product-1 .left,
.product-1 .right {
    width: 50%;
    position: relative;
}

.product-1 .left img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    max-height: 800px;
    object-fit: cover;
}

.product-1 .left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    max-height: 800px;
    background: #00000022;
}

.product-1 .right {
    padding-top: 112px;
}

.product-1 .main {
    background-color: var(--lightergreen);
    border-radius: 20px;
    margin-left: -100px;
}

.product-1 .main h1 {
    padding: 30px 30px 25px;
    font-size: 36px;
    text-align: center;
    margin-bottom: 0;
}

.product-1 .items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 140px 30px 140px;
}

.product-1 .item {
    width: calc(33.33% - 30px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-1 .item img {
    height: 26px;
    width: 26px;
    object-fit: contain;
}

.product-1 .item p {
    margin-bottom: 0;
    font-weight: 500;
}

.product-1 .shopping {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 140px 30px 140px;
}

.product-1 .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.product-1 .light {
    border-color: var(--darkgreen);
}

.product-1 .right>.text {
    padding: 40px 140px 20px 40px;
}

.product-2 .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-2 .video,
.product-2 .images {
    width: 42%;
}

.product-2 .video p,
.product-2 .images p {
    font-weight: 600;
}

.product-2 .images .relative,
.product-2 .images .swiper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.product-2 .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-2 iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.product-3 {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.product-3 .items {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.product-3 .item {
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-weight: 00;
}

.product-3 .item img {
    height: 44px;
}

.product-3 .image {
    width: 100vw;
    margin-left: -20px;
    margin-top: 20px;
}

.vouchers {
    position: relative;
    overflow: hidden;
}

.vouchers .container {
    padding-top: 110px;
    padding-bottom: calc(40vh + 120px);
}

.vouchers .desktop {
    bottom: 0;
    right: 0;
    height: 40vh;
}

.vouchers .mobile {
    position: static;
    width: 100%;
    display: none;
}

.vouchers .wood-left {
    bottom: 0;
    left: 0;
    height: 40vh;
    z-index: 2;
}

.vouchers h2 {
    margin-bottom: 60px;
}

.vouchers .items {
    display: flex;
    gap: 120px;
}

.vouchers .item {
    width: 50%;
}

.vouchers .item img {
    width: 100%;
    height: 243px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.vouchers .item h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.vouchers .price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vouchers .inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vouchers .input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--darkgreen);
    border-radius: 15px;
    height: 44px;
    width: 170px;
}

.vouchers .input img {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    object-fit: contain;
    vertical-align: middle;
}

.vouchers .input>button {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vouchers .input input {
    width: 52px;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 5px;
    color: var(--darkgreen);
}

.vouchers .inputs .primary-link {
    font-size: 18px;
    width: 170px;
    height: 44px;
    font-weight: 600;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* JÁTÉKMENET */

.map-modal::before,
.info-modal::before {
    display: none;
}

.osm-map {
    position: relative;
    width: 100%;
    height: calc(100dvh - 191px);
    border-radius: 10px;
}

.info-modal {
    padding: 10px;
}

.info-modal h3 {
    margin-top: 10px;
}

.info-modal .informations-list {
    height: calc(100dvh - 191px);
    padding-right: 15px;
}

.informations-list {
    overflow-y: auto;
    padding-left: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--darkgreen) white;
}

.informations-list p {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 13px;
}

.informations-list p::before {
    content: "";
    position: absolute;
    top: 2px;
    left: -16px;
    width: 16px;
    height: 16px;
    background: url('../images/arrow-right-green.svg') no-repeat center center / contain;
}

.game-wrapper {
    overflow-y: auto;
}

.game-wrapper section {
    width: 100vw;
    min-height: 100dvh;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.game-wrapper section .container {
    max-width: 500px;
    padding: 90px 20px 20px !important;
    margin-top: 0 !important;
}

.game-start {
    background-color: var(--darkgreen);
    color: white;
    position: relative;
    padding-bottom: 20dvh;
}

.game-start .container {
    position: relative;
    z-index: 1;
}

.game-start h1 {
    font-size: 22px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--lightergreen);
    line-height: 1.4;
}

.game-start h1 span {
    font-style: italic;
}

.game-start .place {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.game-start .place img {
    height: 26px;
    margin-bottom: 5px;
}

.game-start .place p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.game-start .code {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 260px;
    margin: 0 auto;
}

.game-start .code p {
    text-align: center;
    margin-bottom: 15px;
}

.game-start .code input {
    font-size: 22px;
    letter-spacing: 10px;
    text-align: center;
    height: 40px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--lightgreen);
    color: white !important;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.game-start form .primary-link {
    margin: 0 auto 40px;
}

.game-start .desc {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.game-start .footerimage {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 0;
    pointer-events: none;
}

.game-infos {
    background-color: var(--lightergreen);
}

.game-infos h3,
.game-infos h4 {
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

.game-infos h4 {
    font-size: 16px;
    margin-bottom: 30px;
}

.game-infos .primary-link {
    margin: 30px auto 0;
}

.quiz {
    background-color: var(--lightergreen);
    position: relative;
}

.quiz.tutorial-quiz {
    pointer-events: none;
}

.quiz .container {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quiz .question {
    position: relative;
    padding-bottom: 20px;
}

.quiz .question h3 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.quiz .question img {
    width: 100%;
    margin: 15px 0;
}

.quiz .answer {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--darkgreen);
    position: relative;
    margin: 0 -20px -20px -20px;
    border-radius: 15px 15px 0 0;
}

.quiz .answer .primary-link {
    margin: 20px auto 0;
}

.quiz .answer .help-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.quiz .answer .help-button img {
    width: 30px;
}

.quiz .answer input {
    font-size: 16px;
    text-align: center;
}

.quiz .answer input::placeholder {
    color: var(--darkergreen);
}

.quiz .answer h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.quiz .answer .images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
    background-color: var(--lightergreen);
    margin-bottom: 20px;
}

.quiz .answer .images .item {
    position: relative;
    width: calc(33.33% - 7px);
    aspect-ratio: 1/1;
}

.quiz .answer .images .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz .answer .images .item span {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 700;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
    color: white;
    line-height: 1;
}

.quiz .answer fieldset {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
    padding: 0;
}

.quiz .answer .form-check-input+label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding-left: 37px;
    margin-bottom: 10px;
}

.quiz .answer .form-check-input+label::after {
    margin-left: 0;
}

.form-check-input+label::before {
    border: 2px solid white;
}

.help {
    background-color: var(--darkgreen);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.help.active {
    opacity: 1;
    z-index: 1000;
}

.help p {
    margin-bottom: 0;
}

.help::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    background-color: var(--darkgreen);
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
    width: 40px;
    height: 20px;
}

.help.help-1 {
    top: 85px;
    right: 20px;
}

.help.help-1::before {
    left: auto;
    right: 43px;
}

.help.help-2 {
    top: 85px;
    right: 10px;
}

.help.help-2::before {
    left: auto;
    right: 10px;
}

.help.help-3 {
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
}

.help.help-3::before {
    left: 120px;
}

.help.help-4 {
    bottom: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
}

.help.help-4::before {
    top: auto;
    bottom: -19px;
    left: 120px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.help.help-5 {
    bottom: calc(100% + 30px);
    right: -20px;
    z-index: 1;
}

.help.help-5::before {
    top: auto;
    bottom: -19px;
    left: auto;
    right: 15px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.tutorial {
    background: #FFFFFFAA;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999;
}

.tutorial .buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.tutorial.to-top .buttons {
    bottom: 50%;
}

.tutorial .buttons .primary-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tutorial .buttons .primary-link:hover {
    background-color: var(--darkgreen);
    color: white;
}

.tutorial .buttons .primary-link svg {
    margin-left: 0;
}

.tutorial .buttons .nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.tutorial .buttons .skip {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
    color: #306259;
}

.loading-screen {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lightergreen);
    transition: opacity 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.loading-screen.closed {
    opacity: 0;
}

.loading-screen .container {
    max-width: 280px;
    margin-top: -20px;
}

.loading-screen .step .marker {
    display: flex;
    font-weight: 500;
    position: relative;
    opacity: 0.35;
}

.loading-screen .step.active .marker {
    opacity: 1;
}

.loading-screen .step:nth-of-type(2n) .marker {
    justify-content: flex-end;
}

.loading-screen .marker span {
    position: relative;
}

.loading-screen .marker span::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 31px;
    height: 44px;
    background: url('../images/loading-marker.svg') no-repeat center center / contain;
    z-index: -1;
}

.loading-screen .line {
    height: 20px;
    width: 100%;
    margin: 18px 0 8px;
    position: relative;
}

.loading-screen .line .dot {
    position: absolute;
    width: 15px;
    height: 7px;
    background-color: var(--darkgreen);
    opacity: 0.3;
}

.loading-screen .step.active .line .dot {
    opacity: 1;
}

.loading-screen .line .dot:nth-of-type(1) {
    left: 10px;
    rotate: 30deg;
}

.loading-screen .line .dot:nth-of-type(2) {
    left: 36px;
    top: 10px;
    rotate: 10deg;
}

.loading-screen .line .dot:nth-of-type(3) {
    left: 64px;
    top: 12px;
}

.loading-screen .line .dot:nth-of-type(4) {
    left: 93px;
    top: 12px;
}

.loading-screen .line .dot:nth-of-type(5) {
    left: 122px;
    top: 12px;
}

.loading-screen .line .dot:nth-of-type(6) {
    left: 151px;
    top: 12px;
}

.loading-screen .line .dot:nth-of-type(7) {
    left: 178px;
    top: 16px;
    rotate: 20deg;
}

.loading-screen .line .dot:nth-of-type(8) {
    left: 202px;
    top: 27px;
    rotate: 37deg;
}

.loading-screen .step:nth-of-type(2n) .line {
    transform: scaleX(-1);
}

.answer .image {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 25dvh;
    max-width: 100vw;
    object-fit: contain;
    object-position: center bottom;
    touch-action: pinch-zoom;
}

.help-modal {
    position: fixed;
    z-index: 999;
    top: 65px;
    left: 20px;
    height: calc(100dvh - 105px);
    width: calc(100vw - 40px);
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.4s, top 0.4s;
}

.help-modal.active {
    opacity: 1;
    top: 85px;
}

.help-content {
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.help-content.active {
    display: flex;
}

.help-content .content img {
    width: 100%;
    margin: 15px 0;
}

.help-modal .cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.help-modal .cancel img {
    width: 18px;
}

.help-modal .header {
    padding: 20px;
    background-color: var(--lightergreen);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.help-modal .header h3 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.help-modal .content {
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    height: calc(100dvh - 340px);
}

.help-modal .content p {
    font-weight: 500;
}

.help-modal .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.help-modal .primary-link {
    width: 180px;
    display: flex;
    justify-content: center;
}

.good-answer-modal,
.bad-answer-modal {
    position: fixed;
    z-index: 1001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 500px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.good-answer-modal.active,
.bad-answer-modal.active {
    opacity: 1;
}

.good-answer-modal .cancel,
.bad-answer-modal .cancel,
.fact-modal .cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    z-index: 1;
}

.good-answer-modal .header,
.bad-answer-modal .header {
    padding: 20px;
    background-color: var(--lightergreen);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bad-answer-modal .header {
    background-color: #B02E20;
    color: white;
}

.good-answer-modal .header svg,
.bad-answer-modal .header svg {
    width: 54px;
}

.good-answer-modal .header svg path,
.good-answer-modal .header svg circle,
.bad-answer-modal .header svg path,
.bad-answer-modal .header svg circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 846;
}

.good-answer-modal .header svg path {
    stroke-dashoffset: 962;
}

.bad-answer-modal .header svg path {
    stroke-dashoffset: 975;
}

.good-answer-modal .header h3,
.bad-answer-modal .header h3 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.good-answer-modal .content,
.bad-answer-modal .content {
    padding: 10px 20px;
}

.good-answer-modal *,
.bad-answer-modal * {
    text-align: center;
    margin: 0;
}

.good-answer-modal .content-1 {
    border-bottom: 1px solid var(--lightgreen);
    padding: 15px 20px;
}

.good-answer-modal .content-1 p,
.bad-answer-modal .content-1 p {
    font-weight: 700;
    font-size: 16px;
}

.bad-answer-modal .content-1 p {
    margin-top: 5px;
    margin-bottom: 15px;
}

.good-answer-modal .content-2 h4,
.game-end .bottom h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px auto 15px;
    text-align: center;
}

.good-answer-modal .smiley img {
    width: 46px;
    margin: 0 auto;
    display: none;
}

.good-answer-modal .smiley.green img:first-of-type {
    display: block;
}

.good-answer-modal .smiley.yellow img:nth-of-type(2) {
    display: block;
}

.good-answer-modal .smiley.red img:last-of-type {
    display: block;
}

.good-answer-modal .items,
.game-end .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px 0 20px;
}

.good-answer-modal .item,
.game-end .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.good-answer-modal .item img,
.game-end .item img {
    height: 25px;
    margin-bottom: 10px;
}

.good-answer-modal .item p,
.game-end .item p {
    font-size: 12px;
    text-align: center;
    margin-bottom: 0;
}

.good-answer-modal .item strong,
.game-end .item strong {
    font-size: 14px;
}

.good-answer-modal .primary-link,
.bad-answer-modal .primary-link,
.game-end .primary-link {
    margin: 0 auto 20px;
}

.bad-answer-modal .primary-link img {
    width: 16px !important;
    margin-right: 10px;
}

.show-fact {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    margin: 15px auto 0;
    color: var(--darkgreen);
}

.fact-modal {
    background-color: var(--lightergreen);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 40px);
    max-width: 480px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1002;
}

.fact-modal.active {
    opacity: 1;
}

.fact-modal .container {
    position: relative;
    padding-top: 20px !important;
    min-height: calc(100dvh - 105px);
}

.fact-modal h3 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.fact-modal p {
    margin-bottom: 0;
    font-weight: 500;
}

.fact-modal .container img {
    width: 100%;
}

.fact-modal .image {
    position: absolute;
    bottom: 0;
    left: -20px;
    width: calc(100% + 40px);
    aspect-ratio: 5/4;
    object-fit: cover;
}

.game-wrapper section.game-end {
    padding: 0;
}

.game-wrapper section.game-end .container {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    justify-content: space-between;
    background-color: var(--darkgreen);
}

.game-end .top {
    color: white;
    text-align: center;
    padding: 30px 40px 20px;
}

.game-end .top img {
    width: 125px;
    transform-origin: center bottom;
    margin-bottom: 15px;
}


.game-end h1 {
    text-align: center;
    font-size: 30px;
    margin: 25px;
}

.game-end .top p {
    font-size: 16px;
    margin-bottom: 20px;
}

.game-end .bottom {
    background-color: var(--lightergreen);
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.game-end .bottom h4 {
    margin-bottom: 20px;
}

.game-end .bottom .primary-link {
    margin: 30px auto 20px;
}

.game-review {
    background-color: var(--lightergreen);
}

.game-wrapper section.game-review .container {
    padding: 40px 20px !important;
}

.game-review h3 {
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.game-review p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.game-review .stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.stars .star {
    width: 28px;
    height: 28px;
    background: url('../images/star-outline-green.svg') no-repeat center center / contain;
}

.stars .star.active {
    background: url('../images/star-full-green.svg') no-repeat center center / contain;
}

.game-review textarea {
    font-size: 16px;
}

.game-review .primary-link {
    border-color: var(--darkgreen);
    margin: 20px auto 0;
    width: 100px;
    display: flex;
    justify-content: center;
}

.game-wrapper section.game-finish {
    background-color: var(--lightergreen);
}

.game-wrapper section.game-finish .container {
    padding: 40px 20px !important;
}

.game-finish .logo {
    display: block;
    margin: 0 auto 30px;
    height: 36px;
}

.game-finish h1 {
    text-transform: none;
    font-size: 34px;
    text-align: center;
    margin-bottom: 30px;
}

.game-finish p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.game-finish .primary-link {
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.game-finish .building {
    bottom: 16vh;
    right: 0;
    height: 35vh;
}

.game-finish .wood-left {
    bottom: 0;
    left: 0;
    height: 35vh;
}

.game-finish .wood-right {
    bottom: 0;
    right: 0;
    height: 30vh;
}

.article h1 {
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 60px;
}

.article h2 {
    font-size: 44px;
    margin: 30px 0;
}

.article h3 {
    color: var(--lightgreen);
    font-size: 26px;
    margin: 20px 0;
}

.article h4 {
    font-size: 18px;
    margin: 20px 0;
}

.article img {
    width: 100%;
    margin: 20px 0;
}

/* Franchise */

.franchise {
    margin: 0;
    padding: 0;
}

.franchise .container {
    margin-top: 0;
}

.franchise-game-list,
.franchise-contract-infos {
    background-color: var(--lightergreen);
    min-height: 100vh;
    padding-top: 90px;
    margin-top: 0;
}

.franchise-game-list .empty {
    text-align: center;
}

.franchise-game-list .empty .primary-link {
    margin: 20px auto;
    text-transform: uppercase;
}

.franchise-game-list .buttons {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.franchise-game-list .buttons .primary-link.light {
    border-color: var(--darkgreen);
}

.franchise-game-list .list h3 {
    margin: 40px 0 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.franchise-game-list .list .item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.franchise-game-list .list .item .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
}

.franchise-game-list .list .item .name {
    font-weight: 600;
    font-size: 10px;
    width: 100%;
    max-width: 35%;
}

.franchise-game-list .list .item .right {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 65%;
}

.franchise-game-list .list .item .status {
    font-size: 10px;
    width: 55px;
}

.franchise-game-list .list .item .open-stats {
    background-color: var(--darkgreen);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px 4px;
    border-radius: 12px;
    color: white;
    font-size: 11px;
}

.franchise-game-list .list .item.inactive .open-stats,
.franchise-game-list .list .item.draft .open-stats {
    background-color: #D6D7D8;
    pointer-events: none;
}

.franchise-game-list .list .item .open-stats svg {
    width: 10px;
    transition: transform 0.3s;
}

.franchise-game-list .list .item .open-stats.active svg {
    transform: rotate(180deg);
}

.franchise-button {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightergreen) !important;
    padding: 0;
    border: none !important;
}

.franchise-game-list .list .item.inactive a.franchise-button {
    background-color: #D6D7D8;
    pointer-events: none;
}

.franchise-button svg {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.franchise-game-list .list .item.inactive a.franchise-button svg path {
    fill: white;
    stroke: white;
}

.franchise-game-list .stats {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background-color: #f3f9f5;
}

.franchise-game-list .stats .padding {
    padding: 10px;
    border-top: 1px solid var(--darkgreen);
    display: flex;
    flex-wrap: wrap;
}

.franchise-game-list .stats .stat {
    width: 33.33%;
    margin-bottom: 10px;
    padding-right: 10px;
}

.franchise-game-list .stats .stat button {
    font-size: 10px;
    color: var(--darkgreen);
    text-decoration: underline;
    display: block;
    margin-top: 2px;
}

.franchise-game-list .stats .stat p {
    font-size: 10px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.franchise-game-list .stats .stat .number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.franchise-game-list .stats .stat .number img {
    height: 10px;
}

.franchise-game-list .stats .stat .number .value {
    font-weight: 600;
    margin-bottom: 0;
}

.franchise-game-list .stars {
    display: flex;
    gap: 2px !important;
}

.franchise-game-list .stars .star {
    width: 10px;
    height: 10px;
}

.reviews-modal {
    position: fixed;
    z-index: 1001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 500px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.reviews-modal.active {
    opacity: 1;
}

.reviews-modal .cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    z-index: 1;
}

.reviews-modal .content {
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: calc(100dvh - 105px);
}

.reviews-modal .content h3 {
    margin: 0 0 15px;
}

.reviews-modal .review {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--lightergreen);
}

.reviews-modal .review:last-of-type {
    border-bottom: none;
}

.reviews-modal .line,
.reviews-modal .line div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviews-modal .line div {
    margin-bottom: 0;
}

.reviews-modal .line div:not(.stars) {
    gap: 5px;
}

.reviews-modal .line div img {
    height: 10px;
}

.reviews-modal .line p {
    margin-bottom: 0 !important;
    font-weight: 600;
}

.reviews-modal .desc {
    font-size: 12px;
    font-style: italic;
}

.franchise-contract-infos .logo {
    display: block;
    height: 36px;
    margin: 0 auto 30px;
}

.franchise-contract-infos h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: none;
}

.franchise-contract-infos h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--lightgreen);
}

.franchise-contract-infos p {
    font-size: 16px;
    margin-bottom: 16px;
}

.franchise-contract-infos .primary-link {
    margin: 30px auto 0;
}

.franchise-contract {
    margin-top: 90px;
}

.franchise form label {
    font-weight: 600;
    font-size: 14px;
}

.franchise form input,
.franchise form select,
.franchise form textarea {
    font-size: 14px;
    border: 1px solid var(--lightergreen);
    width: 100%;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.franchise form .line {
    display: flex;
    gap: 10px;
}

.franchise form.contract .line .form-input-group:first-of-type {
    width: 35%;
}

.franchise form.contract .line .form-input-group:last-of-type {
    width: 65%;
}

.franchise form .for-company {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.franchise form .for-company.active {
    display: flex;
}

.franchise form .for-person {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.franchise form .for-person.active {
    display: flex;
}

.franchise form .primary-link {
    margin: 20px auto;
}

.franchise-contract .desc {
    font-size: 16px;
}

.franchise-sales {
    background-color: var(--lightergreen);
    min-height: 100vh;
    padding-top: 90px;
    margin-top: 0;
}

.franchise-sales .link {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    width: fit-content;
}

.franchise-sales h3 {
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.franchise-sales .balance {
    display: flex;
    border: 1px solid var(--darkgreen);
    border-radius: 10px;
    margin-bottom: 15px;
}

.franchise-sales .balance p {
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 0;
    width: 50%;
}

.franchise-sales .primary-link.center {
    margin: 0 auto;
}

.franchise-sales .balance p:first-of-type {
    border-right: 1px solid var(--darkgreen);
}

.franchise-sales h4 {
    font-size: 18px;
    margin-top: 30px;
}

input[type="date"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('../images/calendar.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: calc(100% - 120px);
}

.table {
    border-radius: 5px;
    border: 1px solid var(--darkgreen);
    overflow: hidden;
}

.table-header,
.table-row,
.table-footer {
    display: flex;
    border-bottom: 1px solid var(--lightgreen);
}

.table-row:last-of-type {
    border-bottom: none;
}

.table-header .cell:first-of-type,
.table-row .cell:first-of-type,
.table-footer .cell:first-of-type {
    min-width: 80px;
    max-width: 80px;
    padding-left: 10px;
}

.table-header .cell:nth-of-type(3),
.table-row .cell:nth-of-type(3),
.table-footer .cell:nth-of-type(3),
.table-header .cell:nth-of-type(4),
.table-row .cell:nth-of-type(4),
.table-footer .cell:nth-of-type(4) {
    min-width: 68px;
    max-width: 68px;
}

.table .cell {
    width: 50%;
    padding: 10px 15px;
    padding-left: 0;
    background-color: #f3f9f5;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.table-header {
    border-bottom: 1px solid var(--darkgreen);
}

.table-header .cell {
    background-color: white;
    color: var(--lightgreen);
    font-weight: 500;
}

.table-row .cell:last-of-type {
    font-weight: 600;
}

.table-footer {
    border-top: 1px solid var(--darkgreen);
    border-bottom: none;
}

.table-footer .cell {
    color: var(--darkgreen);
    font-weight: 600;
    font-size: 12px;
}

.payments-table .cell {
    min-width: 50% !important;
    max-width: 50% !important;
}

.franchise-header {
    padding: 90px 20px 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--darkgreen);
    color: white;
}

.franchise-header p,
.franchise-header h1 {
    font-size: 20px;
    text-transform: none;
}

.franchise-new-game-start form label {
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 5px;
}

.franchise-new-game-infos .radios {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.franchise-new-game-infos .radios .radio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 80%;
    transform: scale(1.2);
}

.franchise-new-game-infos .radios .radio label {
    width: 100%;
    text-align: center;
    font-weight: 400;
}

input[type="radio"] {
    accent-color: var(--darkgreen);
}

.franchise form label span {
    font-weight: 400;
}

.franchise form .form-check-input+label::before {
    border: 1.5px solid var(--darkgreen);
}

.franchise form .form-check-input+label {
    line-height: 1;
}

.franchise form .franchise-button {
    width: 34px;
    height: 34px;
}

.franchise form .franchise-button svg {
    width: 20px;
    height: 20px;
}

.franchise form .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 30px;
}

.franchise form .actions .left {
    display: flex;
    gap: 15px;
}

.franchise form .actions .primary-link {
    margin: 0;
}

input[type="file"] {
    display: none;
}

.franchise .file-input .file-selector {
    border-radius: 10px;
    border: 1px solid var(--lightergreen);
    overflow: hidden;
}

.franchise .file-input.multiselect .file-selector {
    border: none;
    border-radius: 0;
}

.franchise .file-input .input {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.franchise .file-input .input div {
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 500;
    color: var(--lightgreen);
}

.franchise .file-input .input .button {
    background-color: var(--lightergreen);
    color: var(--darkgreen);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.franchise .file-input.multiselect .button {
    background-color: var(--darkgreen);
    color: white;
    border-radius: 10px;
}

.franchise .file-input .images .image {
    padding: 10px;
    border-top: 1px solid var(--lightergreen);
}

.franchise .file-input.multiselect .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.franchise .file-input.multiselect .images .image {
    border-top: none;
    width: calc(50% - 5px);
    max-width: 200px;
    padding: 10px 0;
}

.franchise .file-input .image img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.franchise .file-input.multiselect .image img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 4px solid transparent;
    transition: border-color 0.2s;
}

.franchise .file-input.multiselect .images .image.active img {
    border-color: var(--darkgreen);
}

.franchise .file-input .image .line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.franchise .file-input .image .delete {
    background-color: var(--darkgreen);
    background-image: url('../images/trash-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border-radius: 99px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.franchise .file-input .image p {
    margin-bottom: 0;
    max-width: calc(100% - 34px);
    overflow-wrap: break-word;
}

.franchise-new-game-infos .desc {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.franchise-new-game-infos .radios.answer-type {
    gap: 10px;
}

.franchise-new-game-infos .radios.answer-type .radio {
    transform: scale(1);
    width: 33.33%;
}

.franchise-new-game-infos .radios.answer-type .radio:last-of-type {
    padding-right: 0;
}

.franchise-new-game-infos .radios.answer-type .radio img {
    width: 100%;
    display: block;
    margin-top: 10px;
}

.franchise-new-game-infos .answer-types>div {
    display: none;
}

.franchise-new-game-infos .answer-types>div.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.franchise-new-game-infos .answer-types .add-answer {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--darkgreen);
    font-weight: 600;
    font-size: 14px;
}

.franchise-new-game-infos .answer-types .add-answer .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 99px;
    border: 1px solid var(--darkgreen);
}

.franchise-new-game-infos .answer-types .add-answer .plus span {
    margin-top: -4px;
    margin-left: 1px;
    font-weight: 400;
    font-size: 18px;
}

.franchise-new-game-infos .answer-types .select .answers input {
    margin-bottom: 10px;
}

.franchise-new-game-infos form .question-actions .primary-link.light {
    margin: 0 auto 30px;
    background-color: white;
    border: 1px solid var(--darkgreen);
}

.franchise-success * {
    text-align: center;
}

.franchise-success p {
    font-weight: 500;
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto 20px;
}

.franchise-success .bg {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

.franchise.franchise-edit-game {
    padding-bottom: 40px;
}

.franchise .edit-collapse {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    background-color: #F3F9F4;
}

.franchise .edit-collapse.active {
    border-color: var(--lightergreen);
}

.franchise .edit-collapse .header,
.franchise .new-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--lightergreen);
    border-radius: 9px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.franchise .edit-collapse.active .header {
    background-color: var(--darkgreen);
}

.franchise .edit-collapse .header p {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 1px;
    transition: color 0.3s;
    font-size: 16px;
    width: 100%;
    padding: 10px;
    padding-right: 0;
}

.franchise .edit-collapse.active .header p {
    color: white;
}

.franchise .edit-collapse .header .right {
    display: flex;
    gap: 13px;
    justify-content: flex-end;
    padding: 10px 13px;
}

.franchise .edit-collapse .header button {
    width: 22px;
    height: 22px;
    transition: filter 0.25s;
    background-position: center;
    background-size: 18px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.franchise .edit-collapse .header button.delete {
    background-image: url('../images/trash.svg');
}

.franchise .edit-collapse .header button.edit {
    background-image: url('../images/edit.svg');
}

.franchise .edit-collapse.active .header button {
    filter: brightness(8);
}

.franchise .edit-collapse .content {
    display: none;
}

.franchise .edit-collapse.active .content {
    display: block;
}

.franchise .edit-collapse .content .padding {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.franchise .new-question {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px;
}


.franchise form > .buttons {
    margin-top: 40px;
}

.franchise form .buttons .primary-link.save {
    margin: 0 auto;
}

.franchise form > .buttons .flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.franchise form > .buttons .flex .primary-link {
    font-size: 12px;
    padding: 8px 16px;
    margin: 0;
    background-color: white;
    color: var(--darkgreen);
    border: 1px solid var(--darkgreen);
}

.franchise form > .buttons .flex .primary-link:hover {
    background-color: var(--darkgreen);
    color: white;
}

.franchise form > .buttons .flex .primary-link img {
    width: 16px;
    margin-right: 10px;
    transition: filter 0.3s;
}

.upload-loader,
.big-file-alert {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.upload-loader.active,
.big-file-alert.active {
    display: flex;
}

.upload-loader span,
.big-file-alert .content {
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.big-file-alert .content {
    padding: 20px;
    position: relative;
}

.big-file-alert .cancel {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 20px;
    z-index: 999;
}

.after-save-modal,
.confirm-delete-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    transition: opacity 0.4s;
}

.after-save-modal .modal-overlay,
.confirm-delete-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
}

.after-save-modal .content,
.confirm-delete-modal .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    width: calc(100vw - 40px);
    max-width: 500px;
}

.after-save-modal img.cancel,
.confirm-delete-modal img.cancel {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 18px;
}

.after-save-modal.active,
.confirm-delete-modal.active {
    display: block;
}

.after-save-modal h3,
.confirm-delete-modal h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 30px;
}

.after-save-modal p,
.confirm-delete-modal p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.after-save-modal .buttons,
.confirm-delete-modal .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.after-save-modal .buttons .flex,
.confirm-delete-modal .buttons .flex {
    display: flex;
    gap: 15px;
}

.after-save-modal .buttons .primary-link,
.confirm-delete-modal .buttons .primary-link {
    cursor: pointer;
}

.form-group .osm-map {
    height: 470px;
}

.form-group .osm-map > div {
    height: 450px;
    max-width: 700px;
    margin: 0 auto;
}

.list-group {
    max-height: 324px;
    overflow: hidden;
}

.list-group-item {
    margin-left: 0;
    cursor: pointer;
}

.list-group-item.active {
    background-color: var(--lightergreen);
    border-color: var(--darkgreen);
}

.list-group-item pre {
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    overflow: hidden;
}

.franchise-landing {
    padding: 120px 40px 0;
}

.franchise-landing h2 {
    text-align: center;
    font-size: 68px;
    margin-bottom: 50px;
}

.franchise-landing h3 {
    text-align: center;
    font-size: 30px;
    max-width: 400px;
    margin: 0 auto 30px;
    color: var(--lightgreen);
}

.franchise-landing .desc {
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 500;
}

.franchise-landing .container {
    max-width: 1000px;
}

.franchise-landing .primary-link {
    margin: 60px auto 0;
}

.franchise-landing .bg-left {
    margin-left: -40px;
    margin-top: -40px;
    z-index: -1;
    width: 20vw;
}

.modal h3 {
    margin-bottom: 15px;
}

/* Franchise asztali */

@media (min-width: 1080px) {

    .after-save-modal {
        padding: 40px;
    }

    .after-save-modal h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .after-save-modal p {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .franchise-game-list .list h3 {
        font-size: 26px;
    }

    .franchise-game-list .list .item {
        margin-bottom: 15px;
    }

    .franchise-game-list .list .item .header {
        padding: 12px 16px;
    }

    .franchise-game-list .list .item .name {
        font-size: 16px;
        max-width: 60%;
    }

    .franchise-game-list .list .item .right {
        justify-content: flex-end;
        max-width: 40%;
        gap: 12px;
    }

    .franchise-game-list .list .item .status {
        font-size: 16px;
        width: 150px;
    }

    .franchise-game-list .list .item .open-stats {
        padding: 6px 12px 7px;
        font-size: 16px;
    }

    .franchise-game-list .list .item .open-stats svg {
        width: 16px;
    }

    .franchise-button {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }

    .franchise-button svg {
        width: 20px;
        height: 20px;
    }

    .franchise-game-list .stats .padding {
        padding: 15px;
    }

    .franchise-game-list .stats .stat {
        margin-bottom: 15px;
        padding-right: 15px;
    }

    .franchise-game-list .stats .stat button {
        font-size: 16px;
    }

    .franchise-game-list .stats .stat p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .franchise-game-list .stats .stat .number {
        gap: 10px;
    }

    .franchise-game-list .stats .stat .number img {
        height: 16px;
    }

    .franchise-game-list .stars {
        gap: 3px !important;
    }

    .franchise-game-list .stars .star {
        width: 16px;
        height: 16px;
    }

    .reviews-modal .line,
    .reviews-modal .line div {
        gap: 20px;
    }

    .reviews-modal .line div img {
        height: 16px;
    }

    .franchise form label {
        font-size: 16px;
    }

    .franchise form input,
    .franchise form select,
    .franchise form textarea {
        font-size: 16px;
    }

    .franchise form .line,
    .franchise form .for-company {
        gap: 15px;
    }

    .franchise-contract .desc {
        font-size: 20px;
        text-align: center;
    }

    .franchise-sales .link {
        font-size: 16px;
    }

    .franchise-sales h3 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .franchise-sales .balance p {
        font-size: 18px;
        padding: 15px;
    }

    .franchise-sales h4 {
        font-size: 24px;
        margin-top: 35px;
    }

    .franchise-sales .form-input-group {
        width: 50%;
    }

    .franchise-sales .container {
        padding-bottom: 40px;
    }

    .table {
        border-radius: 10px;
    }

    .table-header .cell:first-of-type,
    .table-row .cell:first-of-type,
    .table-footer .cell:first-of-type {
        min-width: 140px;
        max-width: 140px;
        padding-left: 16px;
    }

    .table-header .cell:nth-of-type(3),
    .table-row .cell:nth-of-type(3),
    .table-footer .cell:nth-of-type(3),
    .table-header .cell:nth-of-type(4),
    .table-row .cell:nth-of-type(4),
    .table-footer .cell:nth-of-type(4) {
        min-width: 150px;
        max-width: 150px;
    }

    .table .cell {
        width: 70%;
        padding: 15px 20px;
        padding-left: 0;
        font-size: 16px;
    }

    .table-footer .cell {
        font-size: 18px;
    }

    .franchise-header {
        padding: 110px 40px 40px;
        margin-bottom: 40px;
    }

    .franchise-header p,
    .franchise-header h1 {
        font-size: 26px;
    }

    .franchise-new-game-start form label {
        text-transform: uppercase;
        font-size: 18px;
        margin-top: 10px;
    }

    .franchise form .franchise-button {
        width: 48px;
        height: 48px;
    }

    .franchise form .franchise-button svg {
        width: 24px;
        height: 24px;
    }

    .franchise form .actions .left {
        gap: 20px;
    }

    .franchise .file-input .input div {
        font-size: 16px;
    }

    .franchise .file-input .images .image {
        padding: 15px;
    }
    
    .franchise .file-input.multiselect .images .image {
        max-width: 360px;
    }
    
    .franchise .file-input .image img {
        max-width: 650px;
        max-height: 500px;
        display: block;
        margin: 0 auto 15px;
        object-fit: cover;
    }

    .franchise .file-input.multiselect .image img {
        border: 6px solid transparent;
    }
    
    .franchise .file-input.multiselect .images .image.active img {
        border-color: var(--darkgreen);
    }

    .franchise .file-input .image .line {
        justify-content: center;
    }

    .franchise-new-game-infos .desc {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .franchise-new-game-infos .radios.answer-type {
        gap: 40px;
    }

    .franchise-new-game-infos .radios.answer-type .radio label {
        font-weight: 500;
        font-size: 18px;
    }

    .franchise-new-game-infos .answer-types .add-answer {
        font-size: 16px;
    }

    .franchise form > .buttons {
        margin-top: 40px;
    }
    
    .franchise form .buttons .primary-link.save {
        margin: 0 auto;
    }
    
    .franchise form > .buttons .flex {
        gap: 25px;
        margin-top: 30px;
    }
    
    .franchise form > .buttons .flex .primary-link {
        font-size: 16px;
        padding: 12px 22px;
    }
    
    .franchise form > .buttons .flex .primary-link img {
        width: 16px;
        margin-right: 10px;
    }

    .franchise form > .buttons .flex .primary-link:hover img {
        filter: brightness(8);
    }

}

@media (max-width: 1279px) {
    .desktop-navbar {
        display: none;
    }
}


@media (max-width: 1079px) {


    p,
    li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    li {
        margin-bottom: 0;
    }

    h1 {
        font-size: 50px;
        line-height: 1.3;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    section {
        margin: 60px 0;
        padding: 0;
    }

    .primary-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    .primary-link img,
    .primary-link svg {
        width: 12px !important;
    }

    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .container {
        max-width: 650px;
    }

    .games-table .tables {
        width: 180px;
        right: 50%;
        transform: translateX(50%);
    }

    .games-table .tables::before {
        width: 11px;
        top: -20px;
        height: calc(100% + 60px);
    }

    .games-table .tables .item {
        padding: 8px;
        margin-bottom: 15px;
    }

    .games-table .tables .item:last-of-type {
        margin-bottom: 20px;
    }

    .games-table .tables .item p {
        font-size: 14px;
        line-height: 1.2;
    }

    .main-page section {
        padding: 80px 20px;
    }

    .hero .tower {
        height: 66vh;
    }

    .hero .wood-right {
        width: auto;
        height: 30vh;
    }

    .hero h1 {
        top: 17vh;
        font-size: 48px;
    }

    .hero-2 .content {
        top: 12vh;
    }

    .hero-2 .content h2 {
        font-size: 34px;
        margin-bottom: 30px;
        width: 280px;
    }

    .hero-2 .tower {
        transform: translateX(-50%);
        height: 70vh;
    }

    .hero-2 .wood-left {
        height: 32vh;
        left: auto;
        right: 0;
        transform: scaleX(-1);
    }

    .hero-2 .wood-right {
        display: none;
    }

    .container {
        padding: 0;
        justify-content: flex-start;
        margin-top: 65px;
    }

    .main-page .container {
        margin-top: 0;
    }

    .container:not(.main-page section .container) {
        padding: 0 20px;
    }

    .main-page section {
        margin-bottom: 3vh;
    }

    .main-page section.recommended {
        padding-bottom: 60px;
        padding-top: 70px;
    }

    .recommended .content {
        max-height: none;
    }

    .recommended .content p {
        max-width: 100%;
        padding-right: 0;
    }

    .container .links {
        gap: 20px;
        max-width: 400px;
    }

    .container .links .primary-link {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .main-page section.details {
        padding: 40px 20px 20px;
    }

    .details .wood-left {
        display: none;
    }

    .details .wood-right {
        height: 37vh;
        bottom: 0;
    }

    .main-page section.details .container {
        margin-top: 40px;
    }

    .details .container .items {
        gap: 20px;
    }

    .details .container .item {
        width: calc(50% - 10px);
    }

    .details .container .item:last-of-type {
        width: 80%;
    }

    .details .container .item p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .details .container .item img {
        height: 35px;
        margin-bottom: 10px;
    }

    .main-page section.informations {
        padding-top: 75px;
    }

    .informations .container {
        text-align: center;
    }

    .informations .building {
        height: 30vh;
    }

    .informations .wood-left {
        left: auto;
        right: -10vh;
        height: 23vh;
    }

    .informations .wood-right {
        display: none;
    }

    .howto h2 {
        margin-bottom: 20px;
    }

    .howto .container {
        justify-content: center;
        padding-top: 0;
    }

    .howto .items .item {
        padding: 30px 20px;
        gap: 30px;
    }

    .howto .items .item::after {
        top: 75%;
        width: calc(100% - 46px);
        height: 50px;
    }

    .howto .items .item:nth-of-type(2n)::after {
        right: 22px;
    }

    .howto .items .item:nth-of-type(2n+1)::after {
        left: 22px;
    }

    .howto .items .item span {
        margin-top: -10%;
    }

    .howto .items .item p {
        font-size: 13px;
    }

    .main-page section.games-map {
        padding-bottom: 30vh;
        display: none;
    }

    .games-map h2 {
        margin-bottom: 20px;
    }

    .games-map .desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .games-map .wood-left {
        height: 16vh;
    }

    .games-map .places {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .games-map .places .list .current {
        width: 100%;
        max-width: 400px;
    }

    .games-map .places .list .items {
        width: 100%;
    }

    .games-map .places .list .current p,
    .games-map .places .list .item p {
        font-size: 14px;
    }

    .games-map .map {
        margin: 25px auto;
    }

    .games-map .map .marker span {
        font-size: 10px;
        padding: 3px 10px 4px 14px;
    }

    .games-details .nav-line {
        margin-bottom: 20px;
        scrollbar-width: thin;
    }

    .games-details .nav-line span {
        padding: 10px 8px 3px;
    }

    .games-details .game h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .games-details .game>p {
        margin-bottom: 15px;
    }

    .games-details .game .content {
        padding: 20px;
    }

    .games-details .game .numbers {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .dasistswiper .numbers {
        padding: 0 50px;
    }

    .games-details .game .numbers .number {
        width: 100%;
        margin-bottom: 8px;
        flex-direction: row;
        gap: 15px;
    }

    .games-details .game .numbers .number img {
        height: 18px;
        width: 24px;
        object-fit: contain;
        object-position: left center;
        margin-bottom: 0;
    }

    .games-details .game .numbers .number p {
        font-size: 12px;
        margin-right: -10px;
    }

    .games-details .swiper-button-prev,
    .games-details .swiper-button-next {
        width: 32px;
        height: 32px;
        background-color: var(--darkgreen);
        border-radius: 99px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .games-details .swiper-button-prev::after,
    .games-details .swiper-button-next::after {
        color: white !important;
    }

    .games-details .swiper-button-prev::after {
        margin-right: 3px;
        font-size: 20px !important;
    }

    .games-details .swiper-button-next::after {
        margin-left: 3px;
        font-size: 20px !important;
    }

    .games-details .swiper-button-prev {
        left: 20px !important;
    }

    .games-details .swiper-button-next {
        right: 20px !important;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 12px;
        height: 22px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 22px !important;
    }

    .swiper-button-prev {
        left: -30px !important;
    }

    .swiper-button-next {
        right: -30px !important;
    }

    .main-page section.reviews {
        padding-bottom: 35vh;
    }

    .reviews h2 {
        font-size: 30px;
    }

    .reviews .relative {
        width: calc(100% - 50px);
    }

    .reviews .review {
        padding: 20px;
    }

    .reviews .review p.text {
        margin-bottom: 15px;
    }

    .reviews .wood-left {
        height: 22vh;
    }

    .reviews .wood-right {
        height: 30vh;
    }

    .reviews .review .rating .stars {
        margin-bottom: 15px;
    }

    .main-page section.voucher {
        padding-bottom: 40vh;
    }

    .voucher h2 {
        font-size: 32px;
        max-width: 340px;
    }

    .voucher .desktop {
        display: none;
    }

    .voucher .mobile {
        display: block;
        bottom: -10vw;
    }

    .voucher .wood-left {
        height: 20vh;
    }

    .voucher .primary-link {
        margin: 25px auto 0;
    }

    .main-page section.gyik {
        padding-bottom: 26vh;
    }

    .gyik h2 {
        margin-bottom: 10px;
    }

    .gyik .wood-left {
        display: none;
    }

    .gyik .wood-right {
        height: 15vh;
    }

    .gyik .building {
        left: auto;
        right: -10vh;
        transform: none;
    }

    .gyik .items .item .header p {
        padding-right: 15px;
        font-size: 14px;
    }

    .gyik .items .item .header {
        padding: 10px 0;
    }

    .gyik .items .item .content p {
        font-size: 13px;
    }

    .main-page section.contact {
        margin-bottom: 0;
    }

    .contact:not(.main-page section.contact) {
        padding: 40px 0;
    }

    .contact h2 {
        margin-bottom: 20px;
    }

    .contact .content {
        flex-direction: column;
        gap: 20px;
    }

    .contact .content .left,
    .contact .content form {
        width: 100%;
    }

    .contact .content .left p {
        margin-bottom: 10px;
    }

    form {
        gap: 10px;
    }

    form input,
    form textarea,
    form select {
        padding: 10px 15px;
        font-size: 14px;
    }

    .form-check-input+label {
        font-size: 13px;
    }

    .form-check:first-of-type {
        margin-top: 0;
    }

    form .primary-link {
        margin: 0 auto;
    }

    footer .container:not(.main-page footer .container) {
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .main-page footer .container {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    footer .content {
        flex-direction: column;
        gap: 20px;
    }

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    footer .item:first-of-type {
        display: none;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 7px;
        font-size: 14px;
    }

    footer .item h3 {
        margin-bottom: 12px;
    }

    footer .item:last-of-type a.facebook {
        justify-content: center;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
    }

    .fix-line {
        border-radius: 0 0 10px 10px;
        padding-top: 80px;
        padding-bottom: 15px;
    }

    .nav {
        font-size: 14px;
    }

    .nav a {
        margin: 0 5px;
    }

    .fix-line h2 {
        font-size: 18px;
    }

    .fix-line .container {
        margin-top: 0;
        padding: 0 20px;
    }

    .fix-line .items {
        flex-direction: column;
    }

    .product-1 .nav {
        top: 20px;
        left: 20px;
    }

    .product-1 .container {
        flex-direction: column;
        padding: 0 !important;
        max-width: none;
    }

    .product-1 .left,
    .product-1 .right {
        width: 100%;
    }

    .product-1 .left {
        aspect-ratio: 5/4;
        max-height: 400px;
    }

    .product-1 .left img {
        width: 100%;
        height: 100%;
        position: static;
    }

    .product-1 .left::after {
        width: 100%;
    }

    .product-1 .right {
        padding-top: 0;
        margin-top: -30px;
    }

    .product-1 .main {
        margin-left: 0;
    }

    .product-1 .main h1 {
        padding: 20px 20px 15px;
        font-size: 20px;
    }

    .product-1 .items {
        padding: 20px;
    }

    .product-1 .item {
        width: 45%;
        margin-bottom: 0;
    }

    .product-1 .shopping {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 0 20px 20px;
    }

    .product-1 .shopping .price {
        width: 100%;
        text-align: center;
    }

    .product-1 .shopping .primary-link {
        width: 44%;
        max-width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 0 13px;
    }

    .product-1 .right>.text {
        padding: 40px 20px 20px;
    }

    .product-2 {
        margin-top: -20px;
    }

    .product-2 .container {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .product-2 .video,
    .product-2 .images {
        width: 100%;
    }

    .product-2 .images .relative {
        width: calc(100% - 44px);
        margin: 0 auto;
    }

    .product-3 {
        /* padding-bottom: 250px; */
    }

    .product-3 .container {
        margin-top: 0;
    }

    .product-3 .items {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-3 .item {
        width: 100%;
        max-width: 200px;
    }

    .product-3 .image {
        margin-left: 0;
    }

    .product-3 .wood {
        left: 90%;
        height: 120px;
    }

    .contact .container {
        margin-top: 0;
    }

    .article {
        padding-top: 30px;
    }

    .article h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .article h2 {
        font-size: 26px;
        margin: 20px 0;
    }

    .article h3 {
        font-size: 20px;
        margin: 15px 0;
    }

    .article h4 {
        font-size: 16px;
        margin: 10px 0;
    }

    .vouchers h2 {
        margin-bottom: 30px;
    }

    .vouchers .container {
        padding-top: 30px !important;
        padding-bottom: 40px;
    }

    .vouchers .items {
        flex-direction: column;
        gap: 40px;
    }

    .vouchers .item {
        width: 100%;
        max-width: 400px;
    }

    .vouchers .item img {
        height: 200px;
    }

    .vouchers .item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .vouchers .mobile {
        display: block;
    }

    .vouchers .desktop {
        display: none;
    }

    .vouchers .wood-left {
        bottom: 0;
        left: 0;
        height: 25vh;
        z-index: 2;
    }

    .franchise-landing {
        padding: 30px 0 0;
    }

    .franchise-landing h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .franchise-landing h3 {
        font-size: 24px;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .franchise-landing .desc {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
    }

    .franchise-landing.howto .items .item p {
        font-size: 14px;
    }

    .franchise-landing.howto .items .item:nth-of-type(2) p {
        margin-top: 0;
    }

    .franchise-landing .primary-link {
        margin: 40px auto;
    }

    .franchise-landing .bg-left {
        margin-left: -20px;
        margin-top: 0;
        width: 100vw;
    }

}

@media (min-width: 1080px) and (max-width: 1299px) {
    h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .games-map .map {
        max-width: 470px;
    }
}