@font-face {
    src: url("/components/assets/fonts/montserrat-bold.woff2")
        format("truetype");
    font-family: "montserrat-bold";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/components/assets/fonts/opensans-regular.woff2")
        format("truetype");
    font-family: "opensans-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-title: "montserrat-bold", sans-serif;
    --font-text: "opensans-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;
}
html {
    scroll-behavior: smooth;
}

body {
    background: #1f1f1f;
    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;
}

.vikinglotto2--container__main {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.vikinglotto2__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.vikinglotto2--header {
    width: 100%;
    max-width: 100%;
    background-color: #e6e6e6;
}

.vikinglotto2--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vikinglotto2--menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vikinglotto2--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 1.25rem 0;
    flex-direction: column;
    align-items: center;
}

.vikinglotto2--menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vikinglotto2--menu__box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vikinglotto2--menu__list {
    gap: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vikinglotto2--main__text-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.vikinglotto2--menu__list-item a {
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--font-text);
    cursor: pointer;
}

/* Burger */
#vikinglotto2MenuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 0rem;
    z-index: 999 !important;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 58px;
}

#vikinglotto2MenuToggle 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;
}

#vikinglotto2MenuToggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    right: -1rem;
    top: 0.2rem;
    position: relative;
    background: #333333;
    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; /* Отключаем прокрутку с приоритетом */
}

#vikinglotto2MenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#vikinglotto2MenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#vikinglotto2Menu {
    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);
}

#vikinglotto2Menu li {
    text-align: center;
    padding: 20px 50px;
    font-size: 22px;
}

#vikinglotto2MenuToggle input:checked ~ ul {
    transform: none;
}

#vikinglotto2Menu a {
    margin: 0 0 0 2rem;
}

.burger-button {
    display: block;
    width: 42px;
    height: 32px;
    position: absolute;
    top: 0.75rem;
    right: 1.4rem;
    cursor: pointer;
    opacity: 1; /* Изменили с 0 на 1 */
    z-index: 1002 !important;
    -webkit-touch-callout: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
    transform: rotate(45deg) translate(1px, 2px);
    background: #fff !important;
}
.burger-button.active span:last-child {
    transform: rotate(45deg) translate(1px, 2px);
    background: #fff !important;
}

.burger-button.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-2px, -1px);
    -webkit-transform: rotate(-45deg) translate(-2px, -1px);
    -moz-transform: rotate(-45deg) translate(-2px, -1px);
    -ms-transform: rotate(-45deg) translate(-2px, -1px);
    -o-transform: rotate(-45deg) translate(-2px, -1px);
}

/* Обновляем селектор для checked состояния */
#vikinglotto2MenuToggle .active ~ #vikinglotto2Menu {
    transform: none;
}

/* Welcom Section */
.vikinglotto2__welcome--box {
    padding: 4.5rem 0;
}

.vikinglotto2--header__title {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    padding: 3.1rem 2rem;
    background-image: linear-gradient(rgba(0, 82, 155, 0.8)),
        url("/components/assets/image/header/header-map-europe.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.vikinglotto2--header__title-welcome {
    font-family: var(--font-title);
    font-size: 6.125rem;
    line-height: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.vikinglotto2--header__text-welcome {
    font-family: var(--font-text);
    font-size: 1rem;
    line-height: 100%;
    color: #fff;
    font-weight: 400;
    text-align: center;
}
.vikinglotto2--header___gift {
    font-family: var(--font-title);
    font-size: 6.125rem;
    line-height: 100%;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.vikinglotto2--header__timer {
    max-width: 430px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 1.4rem 2.325rem;
    background: #e6e6e6;
}

.timer {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2rem;
}

.timer-block {
    max-width: 70px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-block_date {
    font-size: 2.6rem;
    line-height: 130%;
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 3px;
    color: #00529b;
}

.timer-block_name {
    color: #00529b;
    font-size: 0.85rem;
    line-height: 100%;
    font-family: var(--font-text);
    font-weight: 400;
}

.vikinglotto2--welcome_btn-check {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    color: #333333;
    cursor: pointer;
    max-width: 342px;
    width: 100%;
    height: 54px;
    background: #ffd700;
    cursor: pointer;
}

.vikinglotto2--howplay-box {
    padding: 2.5rem 0;
}

.vikinglotto2--howplay--container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vikinglotto2--howplay---title {
    color: #ffffff;
    font-size: 2rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-weight: 700;
}

.vikinglotto2--howplay---lists {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.vikinglotto2--howplay---lists_elem {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 295px;
    width: 100%;
    padding: 1.25rem 1rem;
    background-color: #ffffff;
}

.vikinglotto2--howplay----elem_title {
    color: #00529b;
    font-size: 1.25rem;
    line-height: 100%;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-weight: 700;
    height: 48px;
}

.vikinglotto2--howplay----elem_text {
    color: #333333;
    font-size: 0.85rem;
    line-height: 120%;
    font-family: var(--font-text);
    font-weight: 400;
}

.vikinglotto2--howplay---btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    color: #333333;
    cursor: pointer;
    max-width: 295px;
    width: 100%;
    height: 54px;
    background: #ffd700;
    cursor: pointer;
    margin: 0 auto;
}

/* Result */
.vikinglotto2--result-box {
    margin: 4.5rem 0;
    background-color: #ffffff;
    padding: 2.5rem 0;
}

.vikinglotto2--result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.vikinglotto2--result--title {
    color: #333333;
    font-size: 2rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-weight: 700;
}

#vikinglotto2Datetime {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: #333333;
    font-family: var(--font-title);
    max-width: 203px;
    width: 100%;
    margin: 0 auto;
    padding: 0.7rem;
}

.vikinglotto2--result-number_lists {
    display: flex;
    gap: 0.7rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.vikinglotto2--result-number__items {
    background: #333333;
    max-width: 40px;
    width: 100%;
    height: 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 100%;
    font-weight: 700;
    font-family: var(--font-title);
}

.vikinglotto2--result-number_pre {
    background: transparent !important;
    color: #333333;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 100%;
}

.vikinglotto2--result-number__items:last-child {
    background-color: #00529b !important;
    color: #fff;
}

/* Legal */
.vikinglotto2--legal_box {
    padding-bottom: 5rem;
}
.vikinglotto2--legal_container {
    padding: 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.vikinglotto2--legal__parthers {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.vikinglotto2--legal__text {
    color: #d5d5d5;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-text);
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

/* Footer */
.vikinglotto2--footer {
    width: 100%;
    padding: 1.25rem 0;
    background: #333333;
}

.vikinglotto2--footer-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.vikinglotto2--footer--title {
    color: #fff;
    font-size: 3rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-title);
}

.vikinglotto2--footer--top_title {
    color: #fff;
    font-size: 2.2rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-title);
}

.vikinglotto2--footer--top_text {
    color: #d5d5d5;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-text);
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.vikinglotto2--footer--parthers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-around;
}

.vikinglotto2--footer---nav-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.05rem;
}

.vikinglotto2--footer---nav-main_items a {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--font-text);
    cursor: pointer;
}

.vikinglotto2--footer---law {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.35rem;
}

.vikinglotto2--footer---law_items a {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--font-text);
    cursor: pointer;
}

/* Cookies Modal */
.vikinglotto2--fixed-cookie {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
}

#vikinglotto2CookiePopup {
    z-index: 15;
    background: #000000;
    position: fixed;
    right: 0rem;
    bottom: 0rem;
    font-size: 14px;
    display: flex;
    width: 100%;
    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;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    -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;
}

.vikinglotto2--cookie_title {
    font-size: 1.4rem;
    line-height: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.vikinglotto2--cookie_text {
    font-family: var(--font-text);
    color: #fff;
    font-weight: 400;
    line-height: 100%;
    font-size: 1rem;
    margin-top: 1rem;
}
.vikinglotto2--cookie-btn {
    cursor: pointer;
    font-family: var(--font-title);
    background: #ffd700;

    font-weight: 700;
    border: none;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    line-height: 19px;

    width: 100%;
    font-size: 1.25rem;
    padding: 0.5em 1.4em;
    position: relative;
}

.vikinglotto2--cookie-btn_bg {
    background-color: transparent !important;
    font-family: var(--font-title);
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #ffd700;
    line-height: 19px;
    font-weight: 700;
    width: 100%;
    font-size: 1.25rem;
    padding: 0.5em 1.4em;
    position: relative;
}

.vikinglotto2--btn--box_cookie {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-direction: column;
    max-width: 260px;
    width: 100%;
}

.vikinglotto2__cookie-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 4rem;
    align-items: flex-end;
}
.vikinglotto2--hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.vikinglotto2--show_cookie {
    visibility: visible;
    bottom: 0em;
    right: 2em;
}

/* FAQ */
.vikinglotto2--faq-box {
    padding: 4.5rem 0;
}

.vikinglotto2--faq--container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vikinglotto2--faq--list_accordion {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.vikinglotto2--faq---item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #266467;

    flex-direction: column;
}

.vikinglotto2--faq---item_top {
    padding: 1.3rem 2.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
}

.vikinglotto2--faq---item__icon {
    border: none;
    background-color: transparent;
    outline: none;
    max-width: 24px;
    width: 100%;
    height: 24px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.vikinglotto2--faq---item__icon::before {
    content: url("/components/assets/image/icon/icon-faq-plus.svg");
}

.vikinglotto2--faq---item__icon.rotated {
    transform: rotate(45deg);
}

.vikinglotto2--faq---item__title {
    color: #00529b;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    font-family: var(--font-title);
    word-break: break-all;
}

.vikinglotto2--faq---item_text {
    color: #333333;
    font-size: 0.85rem;
    line-height: 120%;
    font-family: var(--font-text);
    font-weight: 400;
}

.vikinglotto2--faq---item_text a {
    color: #333333;
    font-size: 0.85rem;
    line-height: 120%;
    font-family: var(--font-text);
    font-weight: 400;
    text-decoration: underline;
}

.vikinglotto2--faq---item_content {
    padding: 0rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vikinglotto2--faq---item_content-num li {
    list-style-type: decimal;
    margin-left: 1.25rem;
}

/* Cookies */
.vikinglotto2--privacy__text {
    padding: 2rem 0;
}

.vikinglotto2--privacy__text h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
    word-break: break-all;
    font-family: var(--font-title) !important;
}
.vikinglotto2--privacy__text h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem !important;
    font-family: var(--font-title) !important;
}

.vikinglotto2--privacy__text p {
    font-size: 1rem !important;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-text) !important;
}
/* Popup */
.vikinglotto2__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;
}

.vikinglotto2__popup__close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.vikinglotto2__popup__body {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 348px;
    background: #000000;
    border-radius: 16px;
    font-family: var(--font-text);
    z-index: 2;
    border: none;
    padding: 2rem 1rem;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

@media (max-width: 991px) {
    .vikinglotto2__popup__body {
        padding: 25px 15px;
    }
}

@media (max-width: 450px) {
    .vikinglotto2__popup__body {
        width: 95%;
        padding: 20px 10px;
    }
}

.vikinglotto2__popup__form input {
    position: absolute;
    top: 0;
    left: -5000px;
}

.vikinglotto2__popup__title {
    font-family: var(--font-title);
    text-align: center;
    font-size: 1.4rem;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.vikinglotto2__popup__text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin: 1rem 0 0.7rem;
    font-family: var(--font-text);
}

.vikinglotto2__popup__subtitle {
    color: #f6d24e;
    font-size: 1.2rem;
    font-family: var(--font-title);
    text-align: center;
    margin-bottom: 1rem;
}

.vikinglotto2__popup__form-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
    margin: 0 auto;
}

.vikinglotto2__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;

    margin: 0 auto;
    width: 100%;
    font-family: var(--font-title);
    background: #ffd700;
    height: 43px;
    border: none;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.025em;
    color: #333333;

    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.vikinglotto2__popup__button-exit {
    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;

    margin: 0 auto;
    width: 100%;
    font-family: var(--font-title);
    background-color: transparent;
    height: 43px;

    border: 1px solid #ffd700;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.025em;
    color: #fff;

    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.vikinglotto2__popup__button:active {
    opacity: 0.2;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

@media (max-width: 600px) {
    .vikinglotto2__popup__text {
        margin: 1rem 0;
    }
}

/* Others Styles */
.vikinglotto2--flag--lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 991px;
    width: 100%;
    margin: 0 auto;
}

.vikinglotto2--flag--items {
    color: #fff;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 2rem;
    font-family: var(--font-title);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.vikinglotto2--flag--be:before {
    content: url("/components/assets/image/flag/flag-icon-be.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--dk:before {
    content: url("/components/assets/image/flag/flag-icon-dk.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--ee:before {
    content: url("/components/assets/image/flag/flag-icon-ee.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--fl:before {
    content: url("/components/assets/image/flag/flag-icon-fl.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--is:before {
    content: url("/components/assets/image/flag/flag-icon-is.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--lv:before {
    content: url("/components/assets/image/flag/flag-icon-lv.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--lt:before {
    content: url("/components/assets/image/flag/flag-icon-lt.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--no:before {
    content: url("/components/assets/image/flag/flag-icon-no.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--sl:before {
    content: url("/components/assets/image/flag/flag-icon-sl.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}
.vikinglotto2--flag--se:before {
    content: url("/components/assets/image/flag/flag-icon-se.svg");
    max-width: 40px;
    width: 100%;
    height: 40px;
}

.vikinglotto2--mt {
    padding: 4.5rem 0;
}

.vikinglotto2--winners_text {
    color: #fff;
    font-size: 1rem;
    line-height: 100%;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2--winners__lists {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.vikinglotto2--winners__lists-items {
    background-color: #ffffff;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 295px;
    width: 100%;
}

.vikinglotto2--winners__lists-items:first-child {
    max-width: 100%;
    width: 100%;
}

.vikinglotto2--winners__lists--date {
    color: #333;
    font-size: 1rem;
    line-height: 100%;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2--winners__lists--count {
    color: #00529b;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    font-family: var(--font-title);
    word-break: break-all;
    text-align: center;
}

.vikinglotto2--winners__lists--text {
    color: #333;
    font-size: 0.85rem;
    line-height: 120%;
    text-align: center;
    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2-m {
    padding: 2.5rem 0 4.5rem 0;
}

.vikinglotto2--resp--container,
.vikinglotto2--resp--lists,
.vikinglotto2--resp---items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vikinglotto2--resp----title {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-title);
    line-height: 100%;
}

.vikinglotto2--resp_text {
    color: #fff;
    font-size: 1rem;
    line-height: 100%;

    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2--resp__sublist,
.vikinglotto2--resp__box-sub {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.vikinglotto2--resp__sublist-items {
    color: #fff;
    font-size: 1rem;
    line-height: 100%;
    list-style-type: disc;
    margin-left: 2.25rem;
    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2--resp_a {
    text-decoration: underline;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}

.vikinglotto2--table_smaller-col {
    width: 15%;
}

.vikinglotto2--table_medium-col {
    width: 20%;
}

.vikinglotto2--table_big-col {
    width: 40%;
}

.vikinglotto2--table_small-col {
    width: 25%;
}

th {
    background-color: #ffd700;
    padding: 0.7rem 2rem;
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-title);
    line-height: 100%;
    text-align: left;
}

.vikinglotto2--table__full {
    width: 100%;
    max-width: 100%;
    background-color: #333333;
    padding: 0.7rem 2rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-title);
    line-height: 100%;
}
.vikinglotto2--table__white {
    background-color: #fff;
    padding: 1.25rem 2rem;
}

.vikinglotto2--result_space {
    justify-content: space-between;
}

.vikinglotto2--table__text {
    color: #333;
    font-size: 1rem;
    line-height: 100%;
    font-weight: 400;
    font-family: var(--font-text);
}

.vikinglotto2--results_table-sort {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-width: 280px;
    width: 100%;
}

#sortDateBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6d24e;
    border: none;
    outline: none;
    height: 32px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #333;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 100%;
    font-size: 1.25rem;
}

select {
    background-color: #e6e6e6;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 100%;
    padding: 0.5rem;
    outline: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Mobile */
@media screen and (max-width: 1270px) {
    .vikinglotto2--container__main {
        padding: 0 1.4rem;
    }

    .vikinglotto2--result_space {
        justify-content: center;
    }

    th,
    .vikinglotto2--table__full {
        padding: 0.7rem;
    }

    .vikinglotto2--table__white {
        padding: 1.25rem 0.7rem;
    }
}

@media screen and (max-width: 991px) {
    .vikinglotto2--header__title-welcome {
        font-size: 3rem;
    }

    .vikinglotto2--header___gift {
        font-size: 2.5rem;
    }

    .vikinglotto2--header__title {
        padding: 3.1rem 0.7rem;
    }

    .vikinglotto2--footer--title {
        font-size: 2rem;
    }

    .vikinglotto2--footer--top_title {
        font-size: 1.4rem;
    }

    #vikinglotto2CookiePopup {
        max-width: 360px;
        width: 100%;
        padding: 1rem 0;
    }

    .vikinglotto2__cookie-container {
        flex-direction: column;
        gap: 1rem;
    }

    .vikinglotto2--btn--box_cookie {
        max-width: 100%;
    }

    .vikinglotto2--table_smaller-col {
        width: 17%;
    }

    .vikinglotto2--table_medium-col {
        width: 25%;
    }

    .vikinglotto2--table_big-col {
        width: 33%;
    }

    .vikinglotto2--table_small-col {
        width: 25%;
    }

    th,
    .vikinglotto2--table__full {
        font-size: 1rem;
    }

    .vikinglotto2--table__text {
        font-size: 0.85rem;
    }
}
@media screen and (max-width: 760px) {
    .vikinglotto2--result_table {
        max-width: 24px;
        width: 100%;
        height: 24px;
        font-size: 0.7rem;
    }

    .vikinglotto2--result_space {
        max-width: 150px;
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .vikinglotto2--menu__list {
        display: none;
    }

    .vikinglotto2--header__container {
        padding: 0.7rem 0;
    }

    #vikinglotto2MenuToggle {
        display: block;
    }

    .vikinglotto2--howplay---lists_elem {
        max-width: 100%;
        width: 100%;
    }

    .vikinglotto2--footer---law {
        flex-direction: column;
        gap: 0.5rem;
    }
    .vikinglotto2--footer--parthers,
    .vikinglotto2--legal__parthers {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vikinglotto2--footer--parthers {
        gap: 1.25rem;
        width: 90%;
        margin: 0 auto;
    }

    .vikinglotto2--result-number_lists {
        max-width: 200px;
        width: 100%;
    }

    .vikinglotto2-m {
        padding: 2.5rem 0;
    }

    .vikinglotto2--winners__lists-items {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    .timer {
        gap: 0.7rem;
    }

    th,
    .vikinglotto2--table__full {
        font-size: 0.85rem;
    }

    .vikinglotto2--table__white {
        padding: 1.25rem 0.3rem;
    }

    .vikinglotto2--table__text {
        font-size: 0.75rem;
    }

    .vikinglotto2-m {
        padding-bottom: 4.5rem;
    }

    .vikinglotto2--legal_container {
        padding: 0;
    }

    .vikinglotto2--container__main {
        padding: 0 1rem;
    }

    .vikinglotto2--welcome_btn-check,
    .vikinglotto2--howplay---btn {
        height: 50px;
        font-size: 1rem;
    }

    .vikinglotto2--footer---nav-main {
        flex-direction: column;
        align-items: center;
        gap: 1.05rem;
    }

    .vikinglotto2--legal__parthers {
        gap: 1.25rem;
    }
}
@media screen and (max-width: 455px) {
    .vikinglotto2--table_smaller-col {
        width: 20%;
    }

    .vikinglotto2--table_medium-col {
        width: 15%;
    }

    .vikinglotto2--table_big-col {
        width: 5%;
    }

    .vikinglotto2--table_small-col {
        width: 35%;
    }
}
