@font-face {
    src: url("/components/assets/fonts/inter-bold.woff2") format("truetype");
    font-family: "inter-bold";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/inter-regular.woff2") format("truetype");
    font-family: "inter-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-title: "inter-bold", sans-serif;
    --font-text: "inter-regular", 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-color: #fdfdfd;
    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;
}

.nordicsosialgame--container__main {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.nordicsosialgame__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.nordicsosialgame--header {
    width: 100%;
    background-color: #3971c8;
}

.nordicsosialgame--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.7rem 0;
    flex-direction: column;
    align-items: center;
}

.nordicsosialgame--menu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.1rem;
}

.nordicsosialgame--menu__list {
    gap: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nordicsosialgame--menu__list-item a {
    color: #fff;
    font-size: 1rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
}

.nordicsosialgame--header-info {
    color: #444444;
    font-size: 1rem;
    line-height: 130%;
    font-family: var(--font-text);
}

/* Стили для dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
    max-width: 103px;
    width: 100%;
}

.dropbtn {
    border-radius: 20px;
    width: 100%;
    height: 34px;
    background: #fdfdfd;
    cursor: pointer;
    gap: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3971c8;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 0.85rem;
    line-height: 100%;
    border: none;
    position: relative;
    z-index: 3; /* Повышаем z-index чтобы кнопка была над контентом */
    padding: 0 15px;
    transition: border-radius 0.2s ease;
}

.flag-icon_norway,
.flag-icon_usa {
    max-width: 18px;
    width: 100%;
    height: 13px;
    object-fit: contain;
}

.dropdown-arrow {
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.dropdown-arrow img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.dropdown-content-wrapper {
    position: absolute;
    top: 17px; /* Половина высоты кнопки */
    right: 0;
    width: 100%;
    max-width: 103px;
    z-index: 2;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 0;
    transition: height 0.3s ease;
}

.dropdown-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fdfdfd;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 17px; /* Вторая половина высоты кнопки */
}

.dropdown-item {
    color: #3971c8;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 0.85rem;
    line-height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: #fdfdfd;
    padding: 8px 15px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.dropdown-item:first-child {
    border-top: 1.2px solid #3971c8;
    max-width: 80px;
    width: 100%;
    margin: 0 auto;
}

/* Active state */
.language-dropdown.active .dropbtn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.language-dropdown.active .dropdown-arrow img {
    transform: rotate(180deg);
}

.language-dropdown.active .dropdown-content-wrapper {
    height: 60px; /* Высота контента */
}

.language-dropdown.active .dropdown-item {
    opacity: 1;
}

/* Welcom Section */
.nordicsosialgame__welcome--box {
    padding: 1.25rem 0;
    margin: 2rem 0;
    position: relative;
}

.nordicsosialgame--header___image {
    max-width: 367px;
    width: 100%;
    height: 323px;
    display: flex;
}

.nordicsosialgame--header--title_bg {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
    width: 100%;
    height: 274px;

    position: relative;
    background-image: linear-gradient(
            rgba(57, 113, 200, 0.7),
            rgba(57, 113, 200, 0.7)
        ),
        url(/components/assets/image/header/chips-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.nordicsosialgame--header__title {
    max-width: 720px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 0.7rem;
}

.nordicsosialgame--header__title-welcome {
    font-family: var(--font-title);
    font-size: 2.3rem;
    line-height: 100%;
    color: #fff;
}

.nordicsosialgame--header__text-welcome {
    font-family: var(--font-text);
    font-size: 0.95rem;
    line-height: 100%;
    color: #fff;
}

.nordicsosialgame--header__btn-welcome {
    background-color: #f9a4db;
    cursor: pointer;
    display: flex;
    align-items: center;
    max-width: 134px;
    width: 100%;
    height: 38px;
    color: #3971c8;
    font-size: 0.95rem;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 100%;
    justify-content: center;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* About */
.nordicsosialgame--about_box {
    padding: 2rem 0;
}

.nordicsosialgame--about_container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nordicsosialgame--about__info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.nordicsosialgame--about__info-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: #3971c8;
    line-height: 100%;
    font-weight: 700;
}

.nordicsosialgame--white {
    color: #fff;
    text-transform: uppercase;
}

.nordicsosialgame--about__info--box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nordicsosialgame--about__info-text {
    color: #3971c8;
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-text);
}

.nordicsosialgame--center {
    text-align: center;
}

/* Games */
.nordicsosialgame--games__cards {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.nordicsosialgame--games__items {
    max-width: 366px;
    width: 100%;
    border: 2px solid #3971c8;
}

.nordicsosialgame--games___img {
    max-width: 366px;
    width: 100%;
    height: 238px;
}

.nordicsosialgame--games__rat {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: #f9a4db;
    padding: 1.25rem 0.5rem;
}

.nordicsosialgame--games__name {
    color: #fff;
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
}

.nordicsosialgame--games__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nordicsosialgame--games__rating-num {
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    color: #fff;
}

.nordicsosialgame--games__rating-icon {
    max-width: 22px;
    width: 100%;
    height: 22px;
}

.nordicsosialgame--games_btn {
    padding: 0.7rem 0;
    background-color: #3971c8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #f9a4db;
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
}

.nordicsosialgame--games_btn::after {
    content: url("/components/assets/image/games/arrow-right-sm.svg");
    padding-left: 0.7rem;
}

.nordicsosialgame--games_btn-review {
    padding: 0.7rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #f9a4db;
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
}

.nordicsosialgame--game_box {
    padding: 3rem 0;
}

/* Social */
.nordicsosialgame--social_box {
    background-color: #3971c8;
    padding: 2rem 0;
}

.nordicsosialgame--social__container {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.nordicsosialgame--social___info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.nordicsosialgame--social___info-title {
    color: #fff;
    line-height: 100%;
    font-size: 1.4rem;
    font-family: var(--font-title);
    font-weight: 700;
}

.nordicsosialgame--social___info-text {
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-text);
    color: #fff;
}

.nordicsosialgame--social__img {
    max-width: 560px;
    width: 100%;
    height: 236px;
}

/* Subscribe */
.nordicsosialgame--subscribe_box {
    background-color: #f9a4db;
    padding: 2rem 0;
}

.nordicsosialgame--subscribe__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nordicsosialgame--subscribe__title {
    font-size: 1.4rem;
    font-family: var(--font-title);
    line-height: 100%;
    text-align: center;
    color: #3971c8;
}

.nordicsosialgame--subscribe__text {
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-text);
    color: #3971c8;
}

.nordicsosialgame--subscribe__cards {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1.25rem;
}

.nordicsosialgame--subscribe__cards-items {
    padding: 2.5rem 1.25rem;
    background-color: #3971c8;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.nordicsosialgame--subscribe__cards--title {
    font-family: var(--font-title);
    line-height: 100%;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

.nordicsosialgame--subscribe__cards--text {
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-text);
    color: #fff;
}

.nordicsosialgame__contact--form {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nordicsosialgame__contact-page {
    padding: 6.25rem 0;
}

.nordicsosialgame__contact--form__img {
    max-width: 610px;
    width: 100%;
    height: 456px;
}

.nordicsosialgame__contact--form__field-text {
    color: #fff;
    font-family: var(--font--medium);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 120%;
}

.nordicsosialgame_contact__form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.nordicsosialgame_contact__input {
    max-width: 947px;
    outline: none;
    height: 38px;
    width: 100%;
    border: 2px solid #3971c8;
    background: transparent;
    font-size: 1.4rem;
    color: #3971c8;
    font-family: var(--font--text);
    font-weight: 400;
    padding: 0.85rem 1.25rem;
}

.nordicsosialgame_contact__input::placeholder {
    color: #3971c8;
    font-size: 0.95rem;
    font-family: var(--font--text);
    font-weight: 400;
    line-height: 100%;
}

.nordicsosialgame_contact__btn {
    max-width: 173px;
    margin: 0 auto;
    background: #3971c8;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 38px;
    padding: 0.5rem 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 100%;
    font-weight: 600;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    font-family: var(--font-title);
    gap: 10px;
    align-items: center;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transition: 0.4s;
}

.active__block {
    display: flex;
}

#confirmButton {
    margin-top: 1rem;
    width: 100%;
    background: #f9a4db;
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 100%;
    position: relative;
    top: 50%;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-title);
    transition: 0.4s;
    border-radius: 4px;
}

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal__title {
    margin: 0;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-align: center;
    line-height: 28px;
}

.modal__subtitle {
    margin: 0;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font--text);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.modal__btn {
    display: flex;
    padding: 10px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    align-self: stretch;
    border: none;
    border-radius: 5px;
    background: #435b8c;
    border-radius: 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

/* .modal__btn:hover {
    background: #ff8235;
    color: #fff;
    transition: 0.4s;
} */

.modal.active__block {
    display: flex;
}

.modal__content {
    position: relative;
    top: 0;
    left: 0;
    border: 1px solid #fff;
    background: #3971c8;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 540px;
    border-radius: 5px;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.modal__close:hover,
.modal__close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Pros and Cons */
.nordicsosialgame--cons_box {
    margin: 4rem 0;
}

.nordicsosialgame--cons__container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.7rem;
}

.nordicsosialgame--cons__cards {
    display: flex;
    gap: 1.25rem;
}

.nordicsosialgame--about__container {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.nordicsosialgame--cons___items {
    background-color: #f9a4db;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.25rem;
    max-width: 560px;
    width: 100%;
}

.nordicsosialgame--cons___items-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-title);
    line-height: 100%;
    color: #fff;
}

.nordicsosialgame--cons___items-transparent {
    background-color: transparent !important;
}

.nordicsosialgame--blue {
    color: #3971c8 !important;
}

.nordicsosialgame--cons___items-list {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
    line-height: 100%;
    font-family: var(--font-text);
}

.nordicsosialgame--cons___items--img {
    max-width: 28px;
    width: 100%;
    height: 28px;
}

/* Social vs Traditional */
.custom-table {
    max-width: 705px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.line-hollow {
    visibility: hidden;
    height: 10px;
}

th {
    padding: 0.5rem 3rem;
    height: 38px;
    color: #3971c8;
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    background-color: #f9a4db;
    border-right: 1px solid #3971c8;
    width: auto;
}

th:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

th:last-child {
    border-right: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* 1-я колонка (Parameter) — auto (под содержимое) */
.custom-table th:first-child,
.custom-table td:first-child {
    min-width: 100px; /* Минимальная ширина (опционально) */
}

/* 2-я колонка (Sosiale nettkasinoer) — узкая */
.custom-table th:nth-child(2),
.custom-table td:nth-child(2) {
    min-width: 200px; /* Фиксированная ширина */
}

/* 3-я колонка (Klassiske nettkasinoer) — auto или можно задать max-width */
.custom-table th:nth-child(3),
.custom-table td:nth-child(3) {
    min-width: 268px; /* Или задать max-width: 300px; */
}

td {
    padding: 0.85rem 1.25rem;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    background-color: #3971c8;
    color: #fff;
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    height: 64px;
    text-align: center;
}

tbody {
    margin-top: 2rem;
}

.border-left_btm {
    border-bottom-left-radius: 5px;
}
.border-left_top {
    border-top-left-radius: 5px;
}
.border-right_btm {
    border-bottom-right-radius: 5px;
}
.border-right_top {
    border-top-right-radius: 5px;
}

/* FAQ */
.nordicsosialgame--faq__cards {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.nordicsosialgame--faq__cards-items {
    flex: 0 1 560px;
    display: flex;
    flex-direction: column;

    padding: 1.25rem;
    background-color: #3971c8;
    cursor: pointer;
}

.nordicsosialgame--faq___items-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nordicsosialgame--faq___items--title {
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 100%;
    font-size: 1rem;
}

.nordicsosialgame--faq___items--icon {
    max-width: 24px;
    width: 100%;
    height: 24px;
    transform: rotate(180deg);
    transition: transform 0.4s ease;
    -webkit-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    -o-transition: transform 0.4s ease;
}

.nordicsosialgame--faq___items-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    -webkit-transition: max-height 0.4s ease;
    -moz-transition: max-height 0.4s ease;
    -ms-transition: max-height 0.4s ease;
    -o-transition: max-height 0.4s ease;
}

.nordicsosialgame--faq___items-text {
    color: #fff;
    font-family: var(--font-text);
    font-weight: 400;
    line-height: 100%;
    font-size: 0.95rem;
    padding-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease, padding-top 0.3s ease;
}

/* Active state */
.nordicsosialgame--faq__cards-items.active
    .nordicsosialgame--faq___items--icon {
    transform: rotate(0deg);
}

.nordicsosialgame--faq__cards-items.active
    .nordicsosialgame--faq___items-content {
    max-height: 500px; /* Adjust based on your content */
}

.nordicsosialgame--faq__cards-items.active .nordicsosialgame--faq___items-text {
    opacity: 1;
    padding-top: 20px;
}

/* Conclusion */
.nordicsosialgame--conclusion_box {
    background-color: #f9a4db;
    margin: 2rem 0;
    padding: 2rem 0;
}

/* Game Page */
.nordicsosialgame--pagegame_box {
    margin: 2.5rem 0;
}

.nordicsosialgame--pagegame_container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nordicsosialgame-gamepage__iframe {
    margin-top: 2rem;
    width: 100%;
    border: none;
    height: 492px;
}

.nordicsosialgame--pagegame_img {
    max-width: 845px;
    width: 100%;
    height: 424px;
}

.nordicsosialgame--white_text {
    color: #fff;
}

.nordicsosialgame--pt {
    margin-top: 1rem;
}

/* Footer */
.nordicsosialgame--footer {
    width: 100%;
    padding: 2.5rem 0;
    background-color: #3971c8;
}

.nordicsosialgame--footer_container {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.nordicsosialgame--footer___top--line {
    text-decoration: underline;
}

.nordicsosialgame--footer___bottom--icon {
    max-width: 24px;
    width: 100%;
    height: 24px;
}

.nordicsosialgame--footer___top {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.nordicsosialgame--footer___top-icon {
    max-width: 54px;
    width: 100%;
    height: 53px;
}

.nordicsosialgame--footer___top-info {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 486px;
    width: 100%;
}

.nordicsosialgame--footer___top--title-line {
    font-family: var(--font-title) !important;
    font-weight: 700;
}

.nordicsosialgame--footer___top--title {
    color: #fff;
    font-size: 1.4rem;
    line-height: 120%;
    font-family: var(--font-title);
}

.nordicsosialgame--footer___top--text {
    color: #fff;
    font-size: 0.95rem;
    line-height: 100%;
    font-family: var(--font-text);
}

.nordicsosialgame--footer___bottom {
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.nordicsosialgame--footer___bottom-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.nordicsosialgame--footer___bottom-links {
    color: #fff;
    font-size: 1rem;
    line-height: 130%;
    font-family: var(--font-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    text-decoration: underline;
}

.nordicsosialgame--footer___top-copy {
    margin-top: 1.25rem !important;
    text-align: center !important;
    width: 100% !important;
    display: inline-block;
}

/* Cookies Modal */
.nordicsosialgame--fixed-cookie {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
}

#nordicsosialgameCookiePopup {
    z-index: 15;
    background: #3971c8;
    position: fixed;
    right: 0rem;
    bottom: 0rem;
    font-size: 14px;
    max-width: 405px;
    width: 100%;

    text-align: justify;
    line-height: 1.8em;
    padding: 1.25rem;
    transition: all 0.5s ease-in;
    z-index: 20;
    border: 1px solid #f9a4db;
}

.nordicsosialgame--cookie_title {
    font-size: 1.4rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.nordicsosialgame--cookie_text {
    margin: 0.7rem 0;
    font-family: var(--font-text);
    color: #fff;
    line-height: 100%;
    font-size: 0.85rem;
    text-align: left;
    letter-spacing: 0.2px;
}
.nordicsosialgame--cookie-btn {
    cursor: pointer;
    font-family: var(--font-title);
    background: #f9a4db;
    border: none;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    font-size: 1.115rem;
    padding: 0.5em 1.4em;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#nordicsosialgameCookiePopup a {
    width: 100%;
    height: 41px;
    border: 2px solid #f9a4db;
    cursor: pointer;
    color: #f9a4db;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nordicsosialgame--btn--box_cookie {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-direction: column;
}

.nordicsosialgame--hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.nordicsosialgame--show_cookie {
    visibility: visible;
    bottom: 0em;
    right: 2em;
}

/* Cookies */
.nordicsosialgame--privacy__text {
    padding: 2rem 0;
}

.nordicsosialgame--privacy__text h1 {
    margin-bottom: 1rem;
}
.nordicsosialgame--privacy__text h2 {
    margin-bottom: 1rem;
}

/* Popup */
.nordicsosialgame__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;
}

.nordicsosialgame__popup__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 1;
}

.nordicsosialgame__popup__body {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 453px;
    background: #3971c8;
    font-family: var(--font-text);
    z-index: 2;
    padding: 1.4rem;

    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .nordicsosialgame__popup__body {
        padding: 25px 15px;
    }
}

@media (max-width: 450px) {
    .nordicsosialgame__popup__body {
        width: 95%;
        padding: 20px 10px;
    }
}

.nordicsosialgame__popup__form {
    width: 100%;
}

.nordicsosialgame__popup__form input {
    position: absolute;
    top: 0;
    left: -5000px;
}

.nordicsosialgame__popup__title {
    font-family: var(--font-title);
    text-align: center;
    font-size: 1.4rem;
    line-height: 100%;
    font-weight: 700;
    color: #fff;
}

.nordicsosialgame__popup__text {
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
    margin: 0.5rem 0;
    font-family: var(--font-text);
    letter-spacing: 0.2px;
}

.nordicsosialgame__popup__subtitle {
    color: #f6d24e;
    font-size: 1.2rem;
    font-family: var(--font-title);
    text-align: center;
    margin-bottom: 1rem;
}

.nordicsosialgame__popup__form-bottom {
    text-align: center;
}

.nordicsosialgame__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-title);
    background-color: #f9a4db;
    font-weight: 700;
    border-radius: 5px;
    height: 39px;
    border: none;
    padding: 1rem 4rem;
    font-weight: 400;
    font-size: 1rem;
    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;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.nordicsosialgame__popup__button:active {
    opacity: 0.2;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

@media (max-width: 991px) {
    .nordicsosialgame__popup__button {
        min-width: 149px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .nordicsosialgame__popup__button {
        font-size: 14px;
        min-width: 169px;
        min-height: 30px;
    }

    .nordicsosialgame__popup__text {
        margin: 1rem 0;
    }
}

/* Burger */
#nordicsosialgameMenuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 0rem;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;

    width: 100%;
    height: 58px;
}

#nordicsosialgameMenuToggle a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

#nordicsosialgameMenuToggle input {
    display: block;
    width: 42px;
    height: 32px;
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#nordicsosialgameMenuToggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    left: 1rem;
    top: 1.5rem;
    position: relative;
    background: #f9a4db;
    border-radius: 3px;
    z-index: 1;
    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; /* Отключаем прокрутку с приоритетом */
}

#nordicsosialgameMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#nordicsosialgameMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#nordicsosialgameMenuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(1px, 2px);
    background: #f9a4db;
    -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);
}

#nordicsosialgameMenuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#nordicsosialgameMenuToggle 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);
}

#nordicsosialgameMenu {
    position: absolute;
    max-width: 100vw;
    width: 100%;
    margin: -75px 0 0 0px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #3971c8;
    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);
}

#nordicsosialgameMenu li {
    text-align: center;
    padding: 20px 50px;
    font-size: 22px;
}

#nordicsosialgameMenuToggle input:checked ~ ul {
    transform: none;
}

#nordicsosialgameMenu a {
    margin: 0 0 0 2rem;
}

/* Page Privacy */
.nordicsosialgame--privacy__text p {
    margin-bottom: 1rem;
}

/* Modal */

.nordicsosialgameModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0%;
    overflow: hidden;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    height: 100%;
}

.nordicsosialgameModal--game__title {
    color: #fff;
    font-family: var(--font-title);
    font-size: 2.4rem;
    line-height: 43.2px;
    text-align: center;
}

.nordicsosialgameModal--modal_content {
    background-color: #3971c8;
    margin: 10% auto;
    padding: 2rem;
    max-width: 1140px;
    width: 100%;
    height: 539px;
    position: relative;
}

.nordicsosialgame-game__iframe {
    margin-top: 1rem;
    width: 100%;
    height: 425px;
    border: none;
    outline: none;
}

.nordicsosialgameModal--game__box--top {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.nordicsosialgameModal--close_buttonFruits {
    cursor: pointer;
    color: #fff;
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    right: 1%;
    top: 0;
}
.nordicsosialgameModal--close_buttonTumble {
    cursor: pointer;
    color: #fff;
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    right: 1%;
    top: 0;
}
.nordicsosialgameModal--close_buttonWinter {
    cursor: pointer;
    color: #fff;
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    right: 1%;
    top: 0;
}

/* Others Styles */

/* Media */
@media screen and (max-width: 1155px) {
    .nordicsosialgame--about__info,
    .nordicsosialgame--social__container,
    .nordicsosialgame--subscribe__container,
    .nordicsosialgame--faq__cards .nordicsosialgame--cons__cards,
    .nordicsosialgame--footer_container,
    .nordicsosialgame--pr,
    .nordicsosialgame-gamepage__iframe {
        padding: 0 1rem;
    }
}
@media screen and (max-width: 1000px) {
    .nordicsosialgame--footer_container,
    .nordicsosialgame--footer___top {
        flex-direction: column;
    }
    .nordicsosialgame--games__cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media screen and (max-width: 925px) {
    .nordicsosialgame--social__container {
        flex-direction: column;
        align-items: center;
    }

    .nordicsosialgame--subscribe__cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nordicsosialgame--subscribe__cards-items {
        flex: 0 1 400px;
    }

    .nordicsosialgame--cons__cards {
        flex-direction: column;
        align-items: center;
    }

    .nordicsosialgame--header___image {
        display: none;
    }

    .nordicsosialgame--pagegame_img {
        height: auto;
    }

    .nordicsosialgame-gamepage__iframe {
        margin-top: 0;
    }
}

@media screen and (max-width: 845px) {
    .nordicsosialgame--menu__list,
    .language-dropdown {
        display: none;
    }

    .nordicsosialgame--menu {
        justify-content: flex-end;
        padding-right: 1rem;
    }

    #nordicsosialgameMenuToggle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-table th:nth-child(3),
    .custom-table td:nth-child(3),
    .custom-table th:first-child,
    .custom-table td:first-child,
    .custom-table th:nth-child(2),
    .custom-table td:nth-child(2) {
        min-width: 100%;
    }
}

@media screen and (max-width: 605px) {
    td,
    th {
        font-size: 0.7rem;
    }

    .nordicsosialgame--header--title_bg {
        height: auto;
        padding: 1.25rem 2rem;
    }

    th {
        padding: 0.5rem 1rem;
    }

    .nordicsosialgame_contact__form {
        flex-direction: column;
    }

    .nordicsosialgame_contact__btn {
        max-width: 100%;
        width: 100%;
    }

    .nordicsosialgame__welcome--box {
        margin: 1rem 0;
    }

    td {
        padding: 0.5rem;
    }
}
