@font-face {
    src: url("/components/assets/fonts/poppins-bold.woff2") format("truetype");
    font-family: "poppins-bold";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/poppins-medium.woff2") format("truetype");
    font-family: "poppins-medium";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/poppins-regular.woff2")
        format("truetype");
    font-family: "poppins-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-title: "poppins-bold", sans-serif;
    --font-text: "poppins-regular", sans-serif;
    --font-subtext: "poppins-medium", sans-serif;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #ffffff;
}

body {
    background: #eaeaea;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

main,
footer {
    width: 100%;
    color: rgba(3, 3, 3, 1);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    vertical-align: top;
}

.szerencsepalota--container__main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.szerencsepalota__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.szerencsepalota--header {
    width: 100%;
}

.szerencsepalota--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.75rem 0;
    flex-direction: column;
    align-items: center;
}

.szerencsepalota--menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.szerencsepalota--menu__box {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.szerencsepalota--menu__list {
    gap: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.szerencsepalota--menu__list-item a {
    color: #636363;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--font-text);
    letter-spacing: 1px;
    cursor: pointer;
}

.szerencsepalota--menu_icon-img {
    max-width: 42px;
    width: 100%;
    height: 42px;
    cursor: pointer;
}

.szerencsepalota--header--title_bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/components/assets/image/header/man-and-woman-jump-bg-header.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.szerencsepalota--header__title {
    padding: 8rem 0;
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.szerencsepalota--header__title-welcome {
    color: #fff;
    font-size: 4rem;
    font-family: var(--font-title);
    line-height: 120%;
    font-weight: 700;
}

.szerencsepalota--header__text-welcome {
    color: #fff;
    font-weight: 400;
    line-height: 150%;
    font-size: 1rem;
    font-family: var(--font-text);
}

.szerencsepalota--header__btn {
    background: #00adb5;
    border: none;
    cursor: pointer;
    font-family: var(--font-subtext);
    font-weight: 500;
    line-height: 100%;
    color: #fff;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 209px;
    width: 100%;
    height: 55px;
}

/* Burger */
#szerencsepalotaMenuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 0rem;
    z-index: 999 !important;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 58px;
}

#szerencsepalotaMenuToggle a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

#szerencsepalotaMenuToggle input {
    display: block;
    width: 42px;
    height: 32px;
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    cursor: pointer;
    opacity: 0;
    z-index: 1002 !important;
    -webkit-touch-callout: none;
}

#szerencsepalotaMenuToggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    right: 1.4rem;
    top: 1rem;
    position: relative;
    background: #000;
    border-radius: 3px;
    z-index: 1001 !important;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.no-scroll {
    overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#szerencsepalotaMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#szerencsepalotaMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#szerencsepalotaMenuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(1px, 2px);
    background: #f9f9f9;
    -webkit-transform: rotate(45deg) translate(1px, 2px);
    -moz-transform: rotate(45deg) translate(1px, 2px);
    -ms-transform: rotate(45deg) translate(1px, 2px);
    -o-transform: rotate(45deg) translate(1px, 2px);
}

#szerencsepalotaMenuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#szerencsepalotaMenuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0px, 1px);
    -webkit-transform: rotate(-45deg) translate(0px, 1px);
    -moz-transform: rotate(-45deg) translate(0px, 1px);
    -ms-transform: rotate(-45deg) translate(0px, 1px);
    -o-transform: rotate(-45deg) translate(0px, 1px);
}

#szerencsepalotaMenu {
    position: absolute;
    max-width: 100vw;
    width: 100%;
    z-index: 1000;
    margin: -75px 0 0 0px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1c1c1c;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    height: 130vh;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
}

#szerencsepalotaMenu li {
    text-align: center;
    padding: 20px 50px;
    font-size: 22px;
}

#szerencsepalotaMenuToggle input:checked ~ ul {
    transform: none;
}

#szerencsepalotaMenu a {
    margin: 0 0 0 2rem;
}

/* Advantages */
.szerencsepalota--advantages {
    padding: 2.5rem 0 0;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.szerencsepalota--advantages__lists {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.szerencsepalota--advantages_items {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.szerencsepalota--advantages__img-box {
    background-color: #ffffff;
    padding: 0.7rem;
}

.szerencsepalota--advantages___image {
    max-width: 292px;
    width: 100%;
    height: 295px;
}

.szerencsepalota--advantages__title {
    font-family: var(--font-subtext);
    font-size: 1.125rem;
    line-height: 100%;
    color: #1c1c1c;
    text-align: center;
    font-weight: 500;
}

/* Shop */
.szerencsepalota--shop {
    padding: 5rem 0;
}

.szerencsepalota--header--title_shop-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/components/assets/image/shop/shop-bg-fitness.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.szerencsepalota--shop__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.szerencsepalota--shop___title {
    color: #1c1c1c;
    font-size: 2rem;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.szerencsepalota--shop___title::before {
    content: url("/components/assets/image/shop/shop-icon-ball.svg");
    max-width: 34px;
    width: 100%;
    height: 34px;
}

.szerencsepalota--shop__lists {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.szerencsepalota--advantages__lists-items {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem;
    background-color: #ffffff;
    max-width: 248px;
    width: 100%;
    height: 418px;
}

.szerencsepalota--advantages___img {
    max-width: 228px;
    width: 100%;
    height: 240px;
}

.szerencsepalota--advantages___company {
    font-family: var(--font-text);
    font-size: 0.85rem;
    line-height: 100%;
    color: #1c1c1c;
    font-weight: 400;
}

.szerencsepalota--advantages___name {
    font-family: var(--font-title);
    font-size: 0.85rem;
    line-height: 100%;
    color: #1c1c1c;
    font-weight: 700;
}
.szerencsepalota--advantages___price {
    font-family: var(--font-title);
    font-size: 1.125rem;
    line-height: 100%;
    color: #1c1c1c;
    font-weight: 700;
}

.szerencsepalota--advantages___btn-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.szerencsepalota--advantages___btn-counter {
    border: 4px solid #f8f8f8;
    max-width: 72px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.szerencsepalota--minus,
.szerencsepalota--plus {
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--font-text);
}

.szerencsepalota--count {
    font-size: 1rem;
    font-weight: var(--font-subtext);
    font-weight: 500;
    line-height: 100%;
}

.szerencsepalota--advantages___btn-buy {
    max-width: 137px;
    width: 100%;
    height: 49px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #00adb5;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-subtext);
    font-weight: 500;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

/* Event */

.szerencsepalota--event__container {
    border: 10px solid #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/components/assets/image/event/event-group-man.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.szerencsepalota--event___info {
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 5rem 2.5rem;
}

/* About */
.szerencsepalota--about {
    padding: 5rem 0;
}

.szerencsepalota--about__container {
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
}

.szerencsepalota--about___description {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 759px;
    width: 100%;
}

.szerencsepalota--about___description-title {
    color: #1c1c1c;
    font-size: 2rem;
    line-height: 150%;
    font-family: var(--font-title);
    text-transform: uppercase;
    max-width: 427px;
    width: 100%;
    font-weight: 700;
}

.szerencsepalota--about___description--info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    height: 100%;
}

.szerencsepalota--about____info-text {
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-text);
    line-height: 120%;
}

.szerencsepalota--about____info--items {
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-text);
    line-height: 120%;
    list-style-type: disc;
    margin-left: 2rem;
}

.szerencsepalota--about__img {
    max-width: 516px;
    width: 100%;
    height: 638px;
    border: 10px solid #fff;
}

.szerencsepalota--about____info-lists {
    display: flex;
    gap: 0.2rem;
    flex-direction: column;
}

/* Contact */
.szerencsepalota--contact__img {
    max-width: 516px;
    width: 100%;
    height: 380px;
    border: 10px solid #fff;
}

.szerencsepalota--contact_pointer {
    cursor: pointer;
}

/* Footer */
.szerencsepalota--footer {
    width: 100%;
    padding: 3rem 0;
    background: #000;
}

.szerencsepalota--footer__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.szerencsepalota--footer___top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1.25rem;
}

.szerencsepalota--footer___top-description {
    max-width: 315px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.szerencsepalota--footer___top--img {
    max-width: 258px;
    width: 100%;
    height: 20px;
}

.szerencsepalota--footer___top--text {
    font-size: 0.85rem;
    color: #fff;
    font-family: var(--font-text);
    line-height: 130%;
}

.szerencsepalota--footer___top-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.szerencsepalota--footer___top-nav {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.szerencsepalota--footer___top--link a {
    color: #fff;
    font-size: 0.85rem;
    line-height: 100%;
    font-family: var(--font-text);
}

.szerencsepalota--footer___top-others {
    display: flex;
    align-items: center;
    gap: 2.525rem;
}
.szerencsepalota--footer___bottom {
    display: flex;
    width: 100%;
    gap: 1.25rem;
    justify-content: space-between;
}

.szerencsepalota--footer____span {
    color: #fff;
    font-size: 0.85rem;
    line-height: 100%;
    font-weight: 400;
    font-family: var(--font-text);
}

/* Cookies Modal */
.szerencsepalota--fixed-cookie {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
}

#szerencsepalotaCookiePopup {
    border-top: 1px solid #ca5127;
    z-index: 15;
    background: #000;
    position: fixed;
    right: 0rem;
    bottom: 0rem;
    font-size: 14px;
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-text);
    text-align: justify;
    line-height: 1.8em;
    padding: 1.25rem;
    transition: all 0.5s ease-in;
    z-index: 20;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
}

.szerencsepalota--cookie_box {
    max-width: 785px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.szerencsepalota--cookie_title {
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    color: #fff;

    text-transform: uppercase;
}

.szerencsepalota--cookie_text {
    /* margin: 1.25rem 0 2.5rem; */
    font-family: var(--font-text);
    color: #fff;
    line-height: 120%;
    font-size: 0.75rem;
}
.szerencsepalota--cookie-btn {
    cursor: pointer;
    font-family: var(--font-title);
    background: #00adb5;
    border: none;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5em 1.4em;
    position: relative;

    text-transform: uppercase;
}

.szerencsepalota--cookie-btn_bg {
    background-color: transparent !important;
    font-family: var(--font-title);
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    border: 1px solid #ffffff;
    text-transform: uppercase;
    width: 100%;
    font-size: 0.75rem;
    padding: 0.5em 1.4em;
    position: relative;
}

.szerencsepalota--container_cookies-top {
    display: flex;
    gap: 1rem;
}

.szerencsepalota--btn--box_cookie {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    max-width: 260px;
    width: 100%;
    flex-direction: column;
}

.szerencsepalota__cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.szerencsepalota--hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.szerencsepalota--show_cookie {
    visibility: visible;
    bottom: 0em;
    right: 2em;
}

.szerencsepalota--cookie__icon {
    max-width: 70px;
    width: 100%;
    height: 70px;
}

/* Cookies */
.szerencsepalota--privacy__text {
    padding: 2rem 0;
}

.szerencsepalota--privacy__text h1 {
    margin-bottom: 1rem;
    color: #111;
}
.szerencsepalota--privacy__text h2 {
    margin-bottom: 1rem;
    color: #111;
    font-family: var(--font-title);
    font-size: 1.25rem;
    line-height: 120%;
}

/* Popup */
.szerencsepalota__popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
        pointer-events 0.2s ease-in-out;
    height: 100vh;
}

.szerencsepalota__popup__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 1;
}

.szerencsepalota__popup__body {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 420px;
    background: #0d0d0d;

    font-family: var(--font-text);
    z-index: 2;
    padding: 1.25rem;

    border: 1px solid #fff;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .szerencsepalota__popup__body {
        padding: 25px 15px;
    }
}

@media (max-width: 450px) {
    .szerencsepalota__popup__body {
        width: 95%;
        padding: 20px 10px;
    }
}

.szerencsepalota__popup__form {
    width: 100%;
}

.szerencsepalota__popup__form input {
    position: absolute;
    top: 0;
    left: -5000px;
}

.szerencsepalota__popup__title {
    font-family: var(--font-title);
    text-align: center;
    font-size: 2rem;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
}

.szerencsepalota__popup__text {
    margin: 0 auto;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
    margin: 1.25rem auto;
    font-family: var(--font-text);
}

.szerencsepalota__popup__subtitle {
    color: #f6d24e;
    font-size: 1.2rem;
    font-family: var(--font-title);
    text-align: center;
    margin-bottom: 1rem;
}

.szerencsepalota__popup__form-bottom {
    text-align: center;
}

.szerencsepalota__popup__button {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 100%;
    font-family: var(--font-subtext);
    min-height: 38px;
    background: #00adb5 !important;
    font-weight: 500;
    border: none;

    padding: 1rem;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.025em;
    color: rgba(254, 254, 254, 1);
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.szerencsepalota__popup__button:active {
    opacity: 0.2;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

@media (max-width: 991px) {
    .szerencsepalota__popup__button {
        min-width: 149px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .szerencsepalota__popup__button {
        font-size: 14px;
        min-width: 169px;
        min-height: 30px;
    }
}

/* Page Privacy */
.szerencsepalota--privacy__text p {
    margin-bottom: 1rem;
    color: #111;
    font-family: var(--font-text);
    line-height: 120%;
    font-size: 1rem;
}

.szerencsepalota--about__info-title {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-text);
    line-height: 120%;
}

/* Modal Contact */
.szerencsepalota-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0 1rem;
}

.szerencsepalota-modal__content {
    background: #f1f1f1;
    top: 50%;
    left: 50%;
    padding: 20px;
    border: none;
    width: 100%;
    height: 360px;
    max-width: 540px;
    position: relative;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.szerencsepalota-modal__close {
    color: #fff;
    position: absolute;
    right: 0;
    top: -3.5rem;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.szerencsepalota--contact__title {
    font-size: 2rem;
    line-height: 130%;
    color: #000000;
    font-family: var(--font-title);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.szerencsepalota--contact__text {
    font-size: 0.85rem;
    line-height: 150%;
    color: #fff;
    font-family: var(--font-text);
    text-align: center;
    font-weight: 400;
    margin: 1rem 0;
}

.szerencsepalota-contact__content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.szerencsepalota__form__item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
}

.szerencsepalota__form__label {
    display: flex;
    flex-direction: column;
    color: #fbf9fa;
    line-height: 130%;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: var(--font-text);
    gap: 0.4rem;
    max-width: 406px;
    width: 100%;
}

.szerencsepalota__form__inputs {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.szerencsepalota__form__input {
    color: #828282;
    padding: 0.5rem 1rem;
    font-family: var(--font-subtext);
    font-weight: 600;
    font-size: 1rem;
    line-height: 120%;
    outline: none;
    text-align: center;
    border: none;
    height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.szerencsepalota__form__button {
    max-width: 209px;
    width: 100%;
    margin: 0 auto;
    height: 55px;
    font-family: var(--font-subtext);
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    line-height: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    background: #00adb5;
}

.szerencsepalota__form__button-img {
    max-width: 15px;
    width: 100%;
    height: 15px;
}

/* Стили для модального окна сообщения */
.szerencsepalota_modal-message {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.szerencsepalota_modal-message.active {
    display: block;
}

.szerencsepalota_modal-content--message {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    height: 100px;
    text-align: center;
    position: relative;
    background-color: #000;
    border-radius: 10px;
    border: 1px solid #2f224c;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.szerencsepalota_modal-content--message p {
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-text);
    font-weight: 500;
}

.szerencsepalota_modal-content--message_close {
    color: #fff;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Others Styles */
.szerencsepalota--contact__description {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    gap: 2.5rem;
}

.szerencsepalota--contact___lists {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 300px;
    width: 100%;
}

.szerencsepalota--page__product {
    padding: 6rem 0;
}

.szerencsepalota--products__page-mt {
    margin: 2.5rem 0 5rem;
}

.szerencsepalota--page__title {
    color: #111;
    font-size: 3rem;
    line-height: 100%;
    font-family: var(--font-title);
    text-transform: uppercase;
}

/* Mobile */
@media screen and (max-width: 1350px) {
    .szerencsepalota--container__main {
        padding: 0 1rem;
    }
}
@media screen and (max-width: 1100px) {
    .szerencsepalota--about__container {
        flex-direction: column;
        align-items: center;
    }

    .szerencsepalota--about___description {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 890px) {
    .szerencsepalota--menu__list {
        display: none;
    }

    .szerencsepalota--header__container {
        padding: 0.5rem 0;
    }

    .szerencsepalota--menu a img {
        max-width: 193px;
        width: 100%;
        height: 14px;
    }

    #szerencsepalotaMenuToggle {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .szerencsepalota--menu {
        padding: 0 4rem 0 0;
    }
    .szerencsepalota--menu_icon-img {
        max-width: 30px;
        width: 100%;
        height: 30px;
    }

    .szerencsepalota--footer___top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .szerencsepalota--footer___top-links {
        align-items: center;
    }

    .szerencsepalota--footer___bottom {
        flex-direction: column;
        gap: 1.25rem;
    }
}

@media screen and (max-width: 725px) {
    .szerencsepalota--header__title {
        padding: 1.25rem 0;
        gap: 0.7rem;
    }

    .szerencsepalota--header__title-shop {
        padding: 4.5rem 0;
    }

    .szerencsepalota--header__title-welcome {
        font-size: 2rem;
        word-break: break-all;
    }

    .szerencsepalota--header__text-welcome,
    .szerencsepalota--about____info-text,
    .szerencsepalota--about____info--items {
        font-size: 0.75rem;
        line-height: 150%;
    }

    .szerencsepalota--header__btn {
        max-width: 176px;
        width: 100%;
        font-size: 0.85rem;
    }

    .szerencsepalota--footer___top-description {
        max-width: 100%;
        width: 100%;
    }

    .szerencsepalota--shop___title,
    .szerencsepalota--f,
    .szerencsepalota--about___description-title {
        font-size: 1.4rem;
    }
    .szerencsepalota--b {
        font-size: 1.125rem !important;
        margin: 0 auto;
        max-width: 209px;
        width: 100%;
    }

    .szerencsepalota--event___info {
        height: 480px;
        justify-content: flex-end;
        padding: 2rem 0.7rem;
    }

    .szerencsepalota--about,
    .szerencsepalota--shop {
        padding: 4rem 0;
    }
    .szerencsepalota--about__img {
        height: auto;
    }

    .szerencsepalota--shop___title {
        gap: 0.5rem;
    }

    .szerencsepalota--footer___top-nav,
    .szerencsepalota--footer___top-others {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
    .szerencsepalota--advantages_items {
        width: 100% !important;
    }

    .szerencsepalota--advantages___image {
        max-width: 100%;
    }

    .szerencsepalota--container_cookies-top {
        flex-direction: column;
        align-items: center;
    }
    .szerencsepalota__cookie-container {
        flex-direction: column;
        align-items: center;
    }

    #szerencsepalotaCookiePopup {
        max-width: 328px;
        width: 100%;
        padding: 0.7rem 0;
    }

    .szerencsepalota--btn--box_cookie {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .szerencsepalota--advantages__lists-items {
        max-width: 420px;
    }

    .szerencsepalota--advantages___img {
        width: 100%;

        margin: 0 auto;
    }

    .szerencsepalota--advantages___btn-buy {
        max-width: 217px;
        width: 100%;
    }
}
