:root {
    --font: Helvetica, sans-serif;
    --maincolor1: rgb(224, 231, 255);
    --maincolor2: rgb(37, 99, 235);
    --gradient: linear-gradient(90deg, var(--maincolor1) 0%, #93c5fd 50%, var(--maincolor2) 100%);
    --yellowbg: transparent var(--gradient) 0% 0% no-repeat padding-box;
    --grey: #f1f5f9;
    --select-border: #2563eb;
    --select-arrow: var(--select-border);
    --blackish: #1e293b;
    --font9: 3.3vw;
    --font11: 3.7vw;
    --font13: 4.1vw;
    --font24: 6.4vw;
    --font40: 10.667vw;
    --grid: 2.13vw;
    --zebra: #66736b;
    --ejbackground-grey: #f1f5f9;
    --llbackground: linear-gradient(90deg, #3b82f6, #1d4ed8);
    --llgreen: transparent linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%) 0% 0% no-repeat padding-box;
    --cta: linear-gradient(to top, #414141, #434343, #454545, #474747, #454545);
    --betslipBG: #fbf5ed;
    --black: #012404;
    --bannertextcolor: #012404;
    --greengrey: #9AA89C;
    --fontgrey: #565655;
    --green: #2563eb;
    --ejyellow: #e0e7ff;
    --ejgrey: #D6D6D6;
    --ballsgrey: rgb(229,231,230);
    --shadow: 0px 3px 6px #00000029;
    --box-radius: 4px 4px 0 0;
    --maxW: 300px;
    --Hpadding: 4vw;
    --Vpadding: 6vw;
    --padding: var(--Vpadding) var(--Hpadding);
    --btheight: 12vw;
    --headerHeight: 13vw;
    --font10: 3.5vw;
    --font12: 3.2vw;
    --font14: 3.733vw;
    --font15: 4.5vw;
    --font16: 4.267vw;
    --font18: 5.1vw;
    --font20: 5.3vw;
    --font22: 5.5vw;
    --font25: 5.9vw;
    --font30: 8vw;
    --font35: 10vw;
    --font38: 12vw;
    --font60: 16vw;
    --swiper-pagination-color: black;
    --swiper-pagination-bottom: 0;
    --red-orange: #FF5C4D;
    --blue-grotto: #0067B3;
}

* {
    box-sizing: border-box;
    font-family: var(--font);
    padding: 0;
    margin: 0;
    color: inherit;
    line-height: 125%;
    text-align: inherit;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}

*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
}

main {
    overflow: hidden;
}

ul {
    list-style: none;
}

details {
    border-bottom: 1px solid black;
    padding: calc(2 * var(--grid)) 0;
    font-size: min(var(--font16), 20px);
    line-height: 150%;
}

details summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    font-size: min(var(--font20), 30px);
    line-height: 140%;
    margin-bottom: var(--grid);
}

details summary::after {
    content: "";
    display: block;
    background: url(imgs/arrow-up.svg) no-repeat center center;
    transform: rotate(180deg);
    width: 37px;
    height: 37px;
}

details[open] summary::after {
    transform: none;
}

header {
    position: fixed;
    background-color: white;
    z-index: 150;
}

header > div {
    padding: var(--grid) calc(2 * var(--grid));
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1154px;
    max-height: 80px;
    margin: 0 auto;

}

header .logo {
    max-width: 60px;
    width: 13.3vw;
    height: auto;
}

header .logo.logo-text {
    display: inline-block;
    width: auto;
    max-width: none;
    font-size: clamp(1rem, 4vw, 1.35rem);
    font-weight: 700;
    color: var(--maincolor1, #b86b20);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.burger {
    width: 7vw;
    max-width: 40px;
    height: 5.5vw;
    max-height: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 15;
}

.burger div {
    height: 0.53vw;
    max-height: 3px;
    background: black;
}

.navopened .burger {
    max-width: none;
    max-height: none;
}

.toptip {
    z-index: 100000000000;
    position: fixed;
    top: -150%;
    height: 14vw;
    border-radius: 0 0 25px 25px;
    width: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    background: linear-gradient(90deg, #a4cc25, #64a407);
    box-shadow: var(--shadow);
    min-width: 200px;
    text-decoration: none;
}

.stick .toptip {
    top: 0;
    left: 26%;
    margin: 0;
}

.toptip span {
    color: #fff;
    font-weight: 900;
    font-size: var(--font14);
    width: auto;
    padding: 0 6px;
    text-align: center;
}

.toptip img {
    width: min(6vw, 25px);
    height: auto;
}

nav {
    background: var(--gradient);
    position: fixed;
    height: 100vh;
    display: none;
    right: 0;
    top: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5vw;
    z-index: 10;
}

nav a {
    margin: 1.33vw;
    text-decoration: none;
    color: white;
    font-size: var(--font24);
    display: flex;
    width: 80%;
    align-items: end;
    gap: calc(2 * var(--grid));
}

nav a img {
    width: 8.5vw;
    height: auto;
}


h1, h2 {
    font-size: min(var(--font40), 60px);
    line-height:115%;
    margin-bottom: 8px;
}

h2 {
    font-size: min(var(--font30), 40px);
    margin-bottom: calc(2* var(--grid));
}

h3 {
    font-size: min(var(--font20), 30px);
    line-height: 140%;
    margin-bottom: var(--grid);
}

p {
    font-size: min(var(--font16), 20px);
    line-height: 150%;
}

section p {
    margin-bottom: calc( 2 * var(--grid));
}

button {
    background-color: black;
    color: white;
    border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.20);
    padding: min(var(--grid), 8px) min(calc(3 * var(--grid)), 24px);
    font-size: min(var(--font16), 16px);
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    border: none;
}
body > section, main > section, footer {
    width: 100%;
    margin: 0 auto;
    padding: calc(4 * var(--grid)) calc(2 * var(--grid));
}

section.grey {
    background-color: var(--grey);
}

table tr {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 17.2vw;
    border-radius: 2.67vw;
}

table tr:nth-child(even) {
    background-color: white;
}

table tr:nth-child(odd) {
    background-color: var(--grey);
}

table tr:first-child {
    display: none;
}

table th {
    display: none;
}

table td {
    width: auto;
    padding: 0;
    position: absolute;
    top: 9vw;
}

table td, table th {
    font-size: min(var(--font16), 21px);
}

table td:nth-child(1), table th:nth-child(1) {
    left: 4vw;
    color: var(--zebra);
    top: 3vw;
}

table td:nth-child(2), table th:nth-child(2) {
    left: 4vw;
}

table td:nth-child(3), table th:nth-child(3) {
    right: 4vw;
    color: var(--zebra);
    top: 3vw;
}

table td:nth-child(4), table th:nth-child(4) {
    right: 4vw;
}

table td:nth-child(5), table th:nth-child(5) {
    top: 14vw;
    left: 4vw;
}

.results-table-container table td:nth-child(1),.results-table-container  table th:nth-child(1),
.results-table-container table td:nth-child(3),.results-table-container  table th:nth-child(3) {
    font-size: var(--font12);
}

.stats-category-table-container table tr {
    height: 36vw;
}

.stats-category-table-container table td:nth-child(4), .stats-category-table-container table th:nth-child(4) {
    left: 4vw;
    top: 17vw;
}

.responsive-table tr {
    height: 18.2vw;
}

.responsive-table td {
    line-height: 165%;
}

.responsive-table td:nth-child(1) {
    color: black;
}

.responsive-table td:before {
    content: attr(data-label);
    display: block;
    color: var(--zebra);
}

.responsive-table td:nth-child(2) {
    top:3vw;
    right: 4vw;
    text-align: right;
    left: auto;
}

.stats-category-table-container table td {
    display: flex;
    width: 100%;
}

.stats-category-table-container table td:nth-child(1), table th:nth-child(1) {
    color: inherit;
    top: 4vw;
}

.stats-category-table-container table td:nth-child(2), table th:nth-child(2) {
    top: 10vw;
}

.stats-category-table-container table td:nth-child(3), table th:nth-child(3) {
    right: auto;
    color: inherit;
    top: 16vw;
    left: 4vw;
}

.stats-category-table-container table td:nth-child(4), table th:nth-child(4) {
    top: 22vw;
}

.stats-category-table-container table td:nth-child(5), table th:nth-child(5) {
    top: 28vw;
}

.stats-category-table-container table td span {
    font-size: var(--font12);
}

.stats-category-table-container table td span:first-child {
    color: var(--zebra);
    font-weight: normal;
    font-size: var(--font12);
}


article {
    margin-bottom: calc(2.5 * var(--grid));
}

aside {
    display: none;
}

.selector-wrapper {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    gap: 16px;
}

.selector-wrapper label {
    width: fit-content;
    font-size: var(--font14)
}

.select {
    min-width: 15ch;
    max-width: 31ch;
    border: 1px solid var(--select-border);
    border-radius: 25px;
    padding: min(var(--grid), 8px) min(calc(2 * var(--grid)), 16px);
    cursor: pointer;
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    background-color: white;
}

.select::after {
    content: "";
    width: min(calc(2 * var(--grid)), 16px);
    height: min(var(--grid), 8px);
    background-color: black;
    clip-path: polygon(50% 85%, 85% 0, 100% 0, 50% 100%, 0 0, 15% 0);
    justify-self: end;
}

select, .select:after {
    grid-area: select;
}


select {
    appearance: none;
    outline: none;
    border: 0;
    font-size: min(var(--font16), 16px);
    background-color: transparent;
}

ol {
    list-style-position: inside;
    font-size: min(var(--font16), 20px);
    line-height: 150%;
}

.navopened nav {
    display: flex;
}

.navopened .burger {
    position: fixed;
    right: calc(2 * var(--grid));
}

.navopened .burger div:nth-child(1) {
    transform: rotate(45deg) translate(1.5vw, 1.5vw);
}

.navopened .burger div:nth-child(2) {
    visibility: hidden;
}

.navopened .burger div:nth-child(3) {
    transform: rotate(-45deg) translate(1vw, -1vw);
}

.navopened .burger div {
    background: white;
}

.hero {
    height: 54vw;
    max-height: 450px;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    position: relative;
    top: 80px;
}

.hero img {
    width: 100%;
    height: auto;
}

.banner-wrapper, .last-results-container {
    background: var(--gradient);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: center;
}

.banner {
    margin: 0 0 calc(-38vw + 80px) 0;
    background: var(--maincolor1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    border-radius: 25px;
    position: relative;
    top: calc(-38vw + 80px);
    padding: calc(2 * var(--grid));
    width: 91.5%;
    max-width: 553px;
    max-height: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 90%;
}

.banner section {
    width: 91.5%;
}

.offer-wrapper section {
    padding: var(--grid);
}

.next-jackpot-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-left {
    width: fit-content;
}

.next-left > span {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: min(var(--font16), 24px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.in-play {
    width: 34%;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 8px;
}

.banner p {
    line-height: normal;
}

.jackcurr, .jackpot-sign  {
    font-size: min(var(--font40), 40px);
    font-weight: bold;
    margin-bottom: 0;
}

.jackcurr {
    margin-top: var(--grid);
}

.jackmill {
    text-transform: uppercase;
}

/*
.jackcurr span {
    font-size: min(var(--font30), 40px);
}

.jackpot-sign {
    font-size: min(var(--font30), 40px);
}
*/

.offer {
    border-top: 1px solid;
    margin-top: min(calc(2 * var(--grid)), 24px);
    padding-top: calc(2 * var(--grid));
}

.offer p {
    margin-bottom: var(--grid);
    font-size: min(var(--font16), 24px);
}

.offer a p {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.offer a p span {
    line-height: 125%;
    text-align: left;
}

.offer a p span:first-child {
    color:black;
    font-size: min(var(--font14), 14px);
}

.offer > div > p:first-child {
    color: white;
    padding: 8px;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(90.0deg, rgba(163, 8, 85, 1.0) 0%, rgba(106, 14, 78, 1.0) 100%);
    border-radius: 5px;
    line-height: 100%;
    width: max-content;
}

.offer p.main {
    font-size: min(var(--font15), 15px);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer a, a.cta {
    background: var(--llbackground);
    color: white;
    display: flex;
    border-radius: 25px;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    justify-content: center;
    font-weight: bold;
    margin: calc(2 * var(--grid)) 0 2px;
    width: fit-content;
    column-gap: 12px;
}

.offer a img, a.cta img {
    width: auto;
    height: 25px;
}

.offer a span, a.cta span {
    text-align: right;
    font-size: 16px;
}

.cta-hero {
    background: var(--llbackground, #b86b20);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}

.footer-disclaimer {
    width: 100%;
    max-width: 90ch;
    margin: 0 auto calc(2 * var(--grid));
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.main-title, .last-results {
    max-width: 553px;
    padding: min(4.534vw, 158px) 0 0 0;
    width: 91.5%;
}

.main-title {
    color: white;
}

.last-results {
    padding-top: 0;
}

.faqs, .compare-faqs {
    background: var(--gradient);
}

.last-results h2 {
    color: white;
}

.last-results p  {
    font-size: min(var(--font20), 30px);
    font-weight: 700;
    line-height: 26px;
    color: white;
}

ul.results {
    justify-content: flex-start;
    display: flex;
    margin: min(4vw, 16px) 0;
    flex-wrap: wrap;
    gap: 0 min(2vw, 16px);
}

ul.results li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.lottery-ball {
    height: 10vw;
    max-height: 50px;
    font-size: 20px;
    width: 10vw;
    max-width: 50px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    text-align: center;
    border: 2px solid #A0A0A0;
}

.lottery-ball.extra {
    border-color: var(--maincolor2);
    background-color: var(--maincolor1);
}

p.note {
    font-size: min(var(--font11), 14px);
    display: flex;
    margin: 3vw auto;
    gap: 1vw;
    align-items: center;
}

.rules-disclaimer p {
    font-size: min(var(--font11), 14px);
}

.rules-disclaimer {
    margin: calc(3 * var(--grid)) auto;
}

.info {
    width: 5vw;
    height: 5vw;
    border: 1px solid;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maincolor2);
    max-width: 20px;
    max-height: 20px;
}

.results-table-container .select {
    margin-top: calc(3 * var(--grid));
}

p span {
    line-height: 0;
}

.boxes {
    display: flex;
    gap: calc(2.5 * var(--grid));
    flex-direction: column;
    margin-top: calc(5 * var(--grid));
}

.boxes .box {
    display: flex;
    align-items: center;
    border-radius: 25px;
    flex-direction: column;
    gap: 14px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.20);
    padding: min( 3 * var(--grid), 24px);
}

.box p {
    color: #000;
    font-feature-settings: 'clig' off, 'liga' off;

    /* 640>1024/normal */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 160% */
    margin-bottom: 0;
}

.box img {
    height: 70px;
    width: auto;
}

.two-cols {
    display: flex;
    gap: 20px;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: min(calc(4* var(--grid)), 32px);
}

.two-cols.last {
    margin-bottom: 0;
    flex-direction: column-reverse;
}

.two-cols img {
    border-radius: 25px;
}

.news-section {
    padding: min(9.6vw, 80px) 4.27vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f7f7f7;
}

.news-section h2 {
    margin-bottom: min(7.47vw, 60px);
}

.main-new, .secondary-news > div {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    border-top: 1px solid #d9d9d9;
    padding: 4.267vw 0 8.533vw;
    justify-content: space-between;
}

.main-new {
    border-top: 0;
    display: block;
    padding-top: 0;
}

.image-wrapper {
    width: 43.733vw;
    height: 34.667vw;
    overflow: hidden;
    border-radius: 25px;
}

.news-section div a, a.news-link {
    display: block;
    position: relative;
    top:max(-14vw, -60px);
    left: calc(100% - 56px);
    border-radius: 50%;
    background: var(--maincolor1) url(imgs/plus-sign.svg) no-repeat center center;
    width: min(10.667vw, 48px);
    height: min(10.667vw, 48px);
    color:white;
    text-decoration: none;
    text-indent: -9999px;
}

.news-section div.more a {
    display: none;
}

.secondary-news .more {
    width: 50%;
}

.new-title {
    font-size: min(4.267vw, 20px);
    font-weight: 700;
    line-height: 150%;
}


.news-section div img {
    height: 100%;
    width: auto;
}

.main-new .image-wrapper {
    width: 91.467vw;
    height: 72.533vw;
}

.main-new .new-title {
    font-size: min(8.533vw, 40px);
    width: 100%;
    line-height: 112.5%;
    margin: 4.267vw 0;
}

.new-short {
    line-height: 150%;
}

.button-plain, .news-section > a {
    display: flex;
    width: max-content;
    height: 40px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #012406;
    color: #012406;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 auto;
}

section.video {
    padding: 0;
}

.videowrapper {
    overflow: hidden;
}

.youtube {
    background-color: black;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.youtube img {
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.youtube .vidplay-button, .youtube .vidplay-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube .vidplay-button:before {
    content: "";
    background: #e9b826;
    width: 20px;
    height: 20px;
    clip-path: polygon(15% 0, 15% 100%, 100% 50%);
    border: none;
}

.youtube img, .youtube iframe, .youtube .vidplay-button, .youtube .vidplay-button:before {
    position: absolute;
}

.youtube .vidplay-button, .youtube .vidplay-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube img, .youtube iframe, .youtube .vidplay-button, .youtube .vidplay-button:before {
    position: absolute;
}

.youtube img, .youtube .vidplay-button {
    cursor: pointer;
}

.youtube .vidplay-button {
    width: 60px;
    height: 60px;
    background-color: var(--blackish);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 1;
    border-radius: 100%;
}

section.faqs div {
    border-bottom: 1px solid black;
    padding: calc(2 * var(--grid)) 0;
}

section.faqs h3 {
    display: flex;
    justify-content: space-between;
}

section.faqs h3:after {
    content: "";
    display: block;
    background: url(imgs/arrow-up.svg) no-repeat center center;
    transform: rotate(180deg);
    width: 37px;
}

section.faqs .opened h3:after {
    transform: none;
}



.swiper-container .swiper {
    width: 100%;
    height: auto;
    padding:0 6.400vw calc(3 * var(--grid));
}

.swiper-container {
    padding: calc(4 * var(--grid)) 0;
}

.swiper-container h2 {
    margin-left: 6.400vw;
}

.slide-content {
    padding: calc(2 * var(--grid)) calc(3 * var(--grid));
    border-radius: 25px;
    border: 2px solid var(--maincolor2);
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
    background-color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-container .swiper-button-next:after, .swiper-container .swiper-button-prev:after {
    color: white;
    font-size: min(var(--font25), 20px);
}

.checker {
    background-color: var(--maincolor1);
}

ul.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 4vw 0 0;
    gap: min(3vw, 16px);
}

.checker .numbers, .checker form, .checker button {
    margin-bottom: calc(3 * var(--grid));
}



.checker .lottery-ball.selected {
    background: var(--maincolor2);
    color: white;
}

.checker .lottery-ball.extra.selected {
    background: white;
    color: var(--maincolor2);
}

.checker .lottery-ball {
    cursor: pointer;
}

.number-wrong {
    color: #fff!important;
    background: #bb0000!important;
    font-weight: 600!important;
}

.number-right {
    color: #000;
    background: var(--llgreen)!important;
    font-weight: 600!important;
}

.loading-bar, button[disabled].loading-bar {
    background-image: linear-gradient(-45deg, rgba(255, 239, 141, .8) 25%, rgba(255, 239, 141, .4) 25%, rgba(255, 239, 141, .4) 50%, rgba(255, 239, 141, .8) 50%, rgba(255, 239, 141, .8) 75%, rgba(255, 239, 141, .4) 75%, rgba(255, 239, 141, .4)) !important;
    background-size: 32px 32px !important;
    background-repeat: repeat !important;
    transition: background-position 60000s linear !important;
    background-position: 4000000px !important;
}

.checkerresults table {
    background: white;
}

section.stats {
    background-color: var(--ejbackground-grey);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.stat-selector {
    margin: 3vw auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-selector span{
    height: var(--btheight);
    background: var(--ejgrey);
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    font-size: min(var(--font14), 21px);
    max-height: 56px;
    cursor: pointer;
}

.stat-selector span:nth-child(1) {
    border-radius: 25px 0 0 25px;
}

.stat-selector span:nth-child(2) {
    border-radius: 0 25px 25px 0;
}

.stat-selector span.active{
    background: var(--red-orange);
    color: #fff;
}

.stat-selector span.cold.active {
    background: var(--blue-grotto);
}

.hotnumbers ul, .coldnumbers ul {
    flex-wrap: nowrap;
    gap: 0 min(2vw, 10px);
}

.hotnumbers li p, .coldnumbers li p {
    font-size: min(var(--font10), 11px);
    font-weight: 300;
    width: 100%;
    text-align: center;
    margin: 1vw 0;
}

.hotnumbers li label, .coldnumbers li label {
    font-size: min(var(--font9), 14px);
    text-align: center;
}

.swapper-b, .swapper-a h3, .swapper-b h3 {
    display: none;
}

footer {
    background-color: black;
    display: flex;
    gap: 5.6vw;
    padding-top: 7.467vw;
    flex-wrap: wrap;
    text-align: center;
}

footer .logo {
    width: min(23.467vw, 97px);
    height: min(23.467vw, 97px);
}

footer .links {
    width: 65%;
    margin-bottom: 8.533vw;
}

footer .links > a, .languages, .languages p {
    color: white;
    font-size: 3.733vw;
}

footer .links > a {
    font-weight: 400;
    text-decoration: none;
    display: block;
    text-align: left;
    margin-bottom: 4.266vw;
}

.languages img {
    border-radius: 50%;
    width: 8.5vw;
    height: 8.5vw;
}

.languages p {
    font-weight: 200;
    text-align: left;
    width: fit-content;
}

.current-lang-container .current-lang::after {
    content: "";
    width: 9px;
    height: 4px;
    background-color: white;
    clip-path: polygon(50% 85%, 85% 0, 100% 0, 50% 100%, 0 0, 15% 0);
    justify-self: end;
}

.current-lang, .other-lang a {
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
    gap: 8px;
    text-decoration: none;
}

.other-lang, .languages .close {
    display: none;
}

.show .other-lang {
    padding: calc(10 * var(--grid)) calc(3 * var(--grid)) calc(2 * var(--grid));
    top: 0;
    display: flex;
    background: black;
    position: fixed;
    height: 100vh;
    right: 0;
    align-items: center;
    justify-content: space-evenly;
    gap: min(7vw, 16px);
    z-index: 10;
    flex-wrap: wrap;
}

.other-lang a {
    width: 40%;
}

.other-lang p {
    font-size: var(--font24);
}

.languages.show .close {
    position: fixed;
    right: 16px;
    width: 7vw;
    height: 5.5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 15;
    top: 95px;
}

.languages .close div:nth-child(1) {
    transform: rotate(45deg) translate(1.5vw, 1.5vw);
}
.languages .close div:nth-child(2) {
    visibility: hidden;
}
.languages .close div:nth-child(3) {
    transform: rotate(-45deg) translate(1vw, -1vw);
}

.languages .close div {
    background: white;
    height: 2px;
}

footer p {
    color: white;
    font-size: 3.733vw;
    line-height: normal;
    width: fit-content;
}

footer .logos {
    border-top: 1px solid white;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: calc(5 * var(--grid));
    padding: calc(4 * var(--grid)) calc(2 * var(--grid));
}

footer .logos a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}

footer .logos a img,
footer .logos a svg {
    display: block;
    height: auto;
    max-height: 44px;
    width: auto;
    max-width: 120px;
    margin: 0 auto;
}

footer .logos a svg {
    max-height: 36px;
    max-width: 140px;
}

footer .logos img:nth-child(1) {
    width: 36.533vw;
}

footer .logos img:nth-child(2) {
    width: 23.4vw;
}
footer .logos img:nth-child(3) {
    width: 33.800vw;
}
footer .logos img:nth-child(4) {
    width: 11.733vw;
}

.shoppingcart {
    width: 24px;
    transform: translate(-4px,0);
}

section.roulette {
    overflow: hidden;
    background-color: var(--maincolor1);
}

.picker-wrapper {
    width: 76.8vw;
    height: 76.8vw;
    box-shadow: 0 2.4vw 4vw #00000073;
    background: black;
    position: absolute;
    border-radius: 100%;
    margin: calc(3 * var(--grid)) auto;
    left: 0;
    right: 0;
}

div.roulette {
    position: relative;
    width: 76.8vw;
    height:76.8vw;
    border-radius: 100%;
    overflow: hidden;
    border: 1.067vw solid;
    margin: 10.667vw auto;
}

div.roulette.spin {
    transition: 3s;
}

.roulette-item {
    color: black;
    font-size: 5.867vw;
    text-align: center;
    font-weight: 900;
    padding: 4vw 0 0;
    position: absolute;
    width: auto;
}

#r-item1 {
    clip-path: polygon(50% 100%, 26% 0, 72% 0);
    background: #99e649;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 38.400vw;
}

#r-item2 {
    clip-path: polygon(50% 100%, 17% 0, 90% 0);
    background: #0057ff;
    top: 5.867vw;
    left: 25.067vw;
    right: 0;
    margin: auto;
    height: 43.733vw;
    transform: rotate(43deg);
}
#r-item3 {
    clip-path: polygon(50% 100%, 17% 0, 83% 0);
    background: #ff00ae;
    top: 17.867vw;
    left: 36.533vw;
    right: 0;
    margin: auto;
    height: 39.733vw;
    transform: rotate(83deg);
}
#r-item4 {
    clip-path: polygon(50% 100%, 12% 0, 93% 0);
    background: #00ff2e;
    top: 29.867vw;
    left: 33.867vw;
    right: 0;
    margin: auto;
    height: 39.733vw;
    transform: rotate(125deg);
}
#r-item5 {
    clip-path: polygon(50% 100%, 16% 0, 78% 0);
    background: #ff9000;
    top: 37.333vw;
    left: 12.8vw;
    right: 8.533vw;
    margin: auto;
    height: 37.6vw;
    transform: rotate(175deg);
}
#r-item6 {
    clip-path: polygon(50% 100%, 17% 0, 88% 0);
    background: #ff0000;
    top: 32.8vw;
    left: 0;
    right: 24vw;
    margin: auto;
    height: 39.733vw;
    transform: rotate(219deg);
}
#r-item7 {
    clip-path: polygon(50% 100%, 12% 0, 95% 0);
    background: #00fcff;
    top: 19.467vw;
    left: 0;
    right: 37.333vw;
    margin: auto;
    height: 39.733vw;
    transform: rotate(266deg);
}

#r-item7 span {
    width: 50%;
    display: block;
    text-align: center;
    margin: auto;
}
#r-item8 {
    clip-path: polygon(50% 100%, 16% 0, 86% 0);
    background: #ffee00;
    top: 5.867vw;
    left: 0;
    right: 28.533vw;
    margin: auto;
    height: 39.733vw;
    transform: rotate(312deg);
}

.midcircle {
    width: 13.333vw;
    height:13.333vw;
    background: black;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
}

.button-wrapper {
    margin: 6.4vw auto 0;
    text-align: center;
}

.roulette button {
    width: fit-content;
}

.spin-roulette {
    transition: .3s;
}

.picker {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    height: 9.600vw;
    background: black;
    width: 9.600vw;
    z-index: 100;
    position: absolute;
    top: -1.333vw;
    left: 0;
    right: 0;
    margin: auto;
}

.spin-roulette.exit {
    transform: scale(0);
    display: none;
}

section.roulette .cta-1 {
    transform: scale(0);
    transition: .3s cubic-bezier(.6,1.73,.72,.97);
    display: none;
}

section.roulette .cta-1.show {
    margin: 0 auto;
    transform: scale(1);
    display: block;
}

section.roulette .cta-1 i {
    padding-right: 1.333vw;
}

.infobox {
    position: relative;
    background: black;
    color: white;
    padding: var(--padding);
    display: flex;
    flex-wrap: wrap;
}

.infobox div {
    width: 50%;
}

.infobox div.big {
    width: 100%;
}

.infobox h2 {
    text-align: center;
}

.infobox div img {
    width: 25%;
    margin: 5vw auto 2vw;
    max-width: 50px;
    display: block;
    height: auto;
}

.infobox div.big img {
    width: 50%;
    max-width: 100px;
}

.infobox div p {
    text-align: center;
    padding: 0;
    margin: 1vw auto;
    font-weight: 300;
}

.infobox div p:nth-child(3) {
    font-weight: bold;
}

.infobox div.small p {
    font-size: min(var(--font14), 16px);
}

.gradient, .previous-results{
    background: var(--gradient);
}

.gradient {
    padding-top: 0;
}

.gradient h1, .gradient h2, .gradient p {
    color: white;
}

.previous-result {
    background-color: white;
    border-radius: 25px;display: flex;
    align-items: center;
    padding: 16px;
    flex-wrap: wrap;
}

.previous-results p {
    text-align: center;
}

.previous-results p.draw-date {
    margin-bottom: var(--grid);
}

.previous-results ul.results {
    justify-content: center;
    margin-top: 0;
    gap:8px;
}

.previous-results .lottery-ball {
    height: 32px;
    width: 32px;
}

.winners-map {
    text-align: center;
}

.winners-map img {
    width: 80%;
    max-width: 570px;
    height: auto;
}

.footnote {
    font-size: min(var(--font12), 12px);
    font-weight: 300;
    text-align: center;
    margin: 1vw auto;
}

.compare-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--grid);
}

.compare-ctas div {
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    padding: var(--grid);
    width: 45%;
}

.compare-ctas .ej {
    background: var(--gradient);
}

.compare-ctas .l649 {
    background: linear-gradient(90deg,#fcd652,#fac200);
}

.compare-ctas .em {
    background: linear-gradient(90deg, #00a9ff, #175eff)
}

.compare-ctas .ed {
    background: linear-gradient(90deg,#00a88c,#a15ab5);
}

.compare-ctas .pb {
    background: linear-gradient(90deg,#fa6a52,#e92a2a);
}

.compare-ctas .mm {
    background: linear-gradient(90deg,#51a7e4,#0f40a7);
}

.compare-ctas p {
    font-size: var(--font18);
    font-weight: 900;
    padding: 1vw;
    text-align: center;
    margin-bottom: 0;
}

.compare-ctas span {
    font-size: var(--font25);
    font-weight: 900;
    text-align: center;
    margin: 2vw auto 0;
    color: #fff;
}

.stats .box p {
    text-align: center;
}

.stats .box p:nth-child(2) {
    font-weight: 900;
    font-size: 28px;
    line-height: 36px;
}

.jackpots-year .select {
    margin-bottom: calc( 2 * var(--grid));
    max-width: 12ch;
    min-width: 12ch;
}

.bullets li {
    list-style: inside;
    font-weight: 300;
    padding: 10px 0;
    line-height: 26px;
}

.discount {
    text-decoration: line-through;
}

.compare-table-container table tr {
    height: min(56vw, 220px);
}
.compare-table-container table td  {
    right: auto;
    color: inherit;
    left: 4vw;
    font-size: min(var(--font14), 16px);
}

.compare-table-container table td:nth-child(1)  {
    top: 4vw;
    font-weight: bold;
}

.compare-table-container table td:nth-child(2)  {
    top: 11vw;
}

.compare-table-container table td:nth-child(3)  {
    top: 18vw;
}

.compare-table-container table td:nth-child(4)  {
    top: 25vw;
}

.compare-table-container table td:nth-child(5)  {
    top: 32vw;
}

.compare-table-container table td:nth-child(6)  {
    top: 39vw;
}

.compare-table-container table td:nth-child(7)  {
    top: 46vw;
}

.compare-table-container table td:nth-child(1) {
    color: black;
}

.compare-table-container table td:before {
    color: var(--zebra);
    margin-left: 2vw;
    padding-right: 4px;
}
.compare-table-container table td:nth-child(2):before {
    content: 'EuroJackpot: ';
}

.compare-table-container table td:nth-child(3):before {
    content: 'Lotto 6 aus 49: ';
}

.compare-table-container table td:nth-child(4):before {
    content: 'EuroMillions: ';
}

.compare-table-container table td:nth-child(5):before {
    content: 'EuroDreams: ';
}

.compare-table-container table td:nth-child(6):before {
    content: 'Powerball: ';
}

.compare-table-container table td:nth-child(7):before {
    content: 'Megamillions: ';
}

.cookie-banner {
    position: fixed;
    bottom: 12px;
    left: 5%;
    right: 5%;
    width: 90%;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    z-index: 999;
    flex-direction: column;

}

.cookie-banner > .cookie-close {
    width: 70%;
    cursor: pointer;
    margin: 0;
    background: var(--llbackground);
    color: #fff;
    text-decoration: none;
    font-size: var(--font14);
    font-weight: 900;
    display: flex;
    border: none;
    height: var(--btheight);
    text-transform: uppercase;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.cookie-banner > div {
    width: 85%;
    line-height: 150%;
    font-size: 14px;
    padding-bottom: 12px;
}

.cookie-banner a {
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

@media (min-width: 395px) {
    .offer a {
        padding: 8px 24px;
    }
}

@media (min-width: 660px) {
    :root {
        --Hpadding: 6vw;
        --Vpadding: 30px;
        --padding: var(--Vpadding) var(--Hpadding);
        --btheight: 50px;
        --headerHeight: 50px;
        --font9: 10px;
        --font10: 11px;
        --font11: 12px;
        --font12: 13px;
        --font13: 14px;
        --font14: 16px;
        --font15: 18px;
        --font16: 20px;
        --font18: 22px;
        --font20: 24px;
        --font22: 26px;
        --font25: 30px;
        --font35: 48px;
        --font38: 54px;
        --maxW: 270px;
    }

    .selector-wrapper label {
        font-size: 20px
    }

    .infobox div {
        width: 33%;
    }

    .infobox div.small {
        width: 25%;
    }

    .infobox div.big {
        width: 50%;
    }

    .infobox div img {
        margin: 30px auto 10px;
    }

    .infobox div p {
        margin: 8px auto;
    }

    .compare-ctas span {
        margin: 10px auto 0;
        font-size: 40px;
    }

    .compare-ctas a {
        font-size: 15px;
        width: 80%;
        margin: 15px auto;
    }

    table td, table th {
        font-size: 18px;
    }

    .results-table-container table td:nth-child(1),.results-table-container  table th:nth-child(1),
    .results-table-container table td:nth-child(3),.results-table-container  table th:nth-child(3) {
        font-size: 18px;
    }

    .cookie-banner {
        flex-direction: row;
        padding: 28px;
        left: 10%;
        right: 10%;
        width: 80%;
        bottom: 20px
    }

    .cookie-banner > .cookie-close {
        min-width: 135px;
        width: 10%;
    }

    .cookie-banner > div {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {

    :root {
        --grid: 8px;
    }

    h1 {
        font-size: 52px;
    }

    .toptip {
        max-width: 250px;
        height: 55px;
    }

    aside {
        float: right;
        display: block;
        width: 25%;
    }

    .hero {
        align-items: center;
    }

    .offer {
        padding-top: 24px;
    }

    .offer a {
        margin: 24px 0;
    }

    .offer p.main {
        font-size: 22px;
    }

    .banner {
        top: -80px;
        margin: 0 0 -80px;
    }

    .main-title {
        max-width: 100%;
        width: 100%;
        padding: 4.534vw calc(2 * var(--grid));
    }

    .responsive-table tr {
        height: 113px;
    }

    .hotnumbers li label, .coldnumbers li label {
        font-size: 16px;
        font-weight: normal;
    }

    .stats-category-table-container table td span:first-child {
        font-size: 18px;
    }

    .stats-category-table-container table td span {
        font-size: 18px;
    }

    footer p {
        font-size: 14px;
        line-height: normal;
    }

    .cooperation {
        display: flex;
        gap: 6px;
        margin-top: 16px;
        justify-content: center;
    }

    .cooperation p:last-child:before {
        content: " - ";
    }

    footer {
        gap: 0;
        text-align: left;
    }

    footer .logos {
        flex-wrap: nowrap;
        column-gap: 36px;
        justify-content: center;
        border-top: 0;
        width: 100%;
        max-width: 90%;
        padding: 0;
    }

    footer .logos img,
    footer .logos a svg {
        height: max(44px, 5vw);
        max-height: 56px;
        width: auto;
    }

    footer .logos img:nth-child(1) {
        width: auto;
    }

    footer .logos img:nth-child(2) {
        width: auto;
    }

    footer .logos img:nth-child(3) {
        width: auto;
    }

    footer .logos img:nth-child(4) {
        width: auto;
    }

    footer .links {
        margin-bottom: 0;
        width: fit-content;
    }

    footer .links > a, .languages, .languages p {
        font-size: 14px;
    }

    footer .links > a {
        margin-bottom: 16px;
    }

    .languages {
        position: relative;
    }

    .languages img {
        width: 24px;
        height: 24px;
    }

    .show .other-lang {
        position: absolute;
        height: auto;
        top: -270px;
        padding: calc(2 * var(--grid));
        border: 1px solid;
        border-radius: 12px;
        width: 500px;
        left: 116px;
        gap: 8px;
        justify-content: center;
    }

    .other-lang a {
        width: 125px;
    }

    .languages.show .close {
        display: none;
    }

    .last-results-container {
        justify-content: left;
        padding: 0 calc(2 * var(--grid));
    }
}

@media (min-width: 992px) {


    h1 {
        font-size: 48px;
        white-space:normal;
    }
    .burger {
        display: none;
    }

    nav {
        display: flex;
        position: relative;
        height: auto;
        flex-direction: revert;
        background: none;
        color: black;
        width: 571px;
        gap: 16px 0;
    }

    nav a {
        width: fit-content;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
    }

    nav a.active {
        color: var(--maincolor2);
    }

    nav a img {
        display: none;
    }

    aside {
        width: 20%;
    }

    .homePage .main-title {
        padding: 119px 0 0;
        margin-top: 0;
        margin-bottom: 64px;
    }

    .last-results-container {
        padding-bottom: 32px;
    }

    .last-results {
        position: relative;
        top: -132px;
        margin-bottom: -132px;
    }

    .last-results h2 {
        margin-bottom: 40px;
    }

    table {
        border-collapse: collapse;
    }

    table tr {
        border-radius: 10px;
        height: auto;
    }

    table td, table th {
        position: initial;
        display: table-cell;
        color: black;
        padding: 16px;
        width: 25%;
        text-align: left;
    }

    .table-rules table td, .table-rules table th {
        width: auto;
    }

    table tr:first-child {
        display: flex;
    }

    table th {
        font-weight: 700;
    }

    table td:nth-child(odd), table th:nth-child(odd) {
        color: black;
    }

    .responsive-table.jackpots {
        width: 60%;
        margin: 0 auto;
    }

    .responsive-table tr {
        height: 80px;
    }

    .checker form {
        display: flex;
        margin-top: 48px;
    }

    .checker button, .checker .selector-wrapper {
        width: fit-content;
    }

    .checker button {
        margin-left: 24px;
    }

    .compare-table-container table td:nth-child(odd) {
        font-size: min(var(--font14), 16px);
    }

    .stats-category-table-container table tr {
        height: auto;
        display: table-row;
    }

    .stats-category-table-container table td {
        width: 25%;
        padding: 22px 12px;
        display: table-cell;
    }

    .swapper-a, .swapper-b {
        width: 48%;
        margin-top: 20px;
    }

    .swapper-b {
        display: block;
    }

    .stat-selector {
        display: none;
    }

    .hotnumbers li p, .coldnumbers li p {
        margin: 5px 0;
    }

    .swapper-a h3, .swapper-b h3 {
        display: block;
        font-size: 22px;
        padding: 0 0 12px;
    }

    .hotnumbers .lottery-ball {
        border-color: var(--red-orange);
    }

    .hotnumbers .lottery-ball.extra {
        border-color: #A0A0A0;
        background-color: rgba(255, 92, 77, 0.5);
    }

    .coldnumbers .lottery-ball {
        border-color: var(--blue-grotto);
    }

    .coldnumbers .lottery-ball.extra {
        border-color: #A0A0A0;
        background-color: rgba(0, 103, 179, 0.5);
    }


    .image-wrapper {
        width: calc(50% - 49px);
        height: 123px;
    }

    .main-new .image-wrapper {
        width: 100%;
        height: 296px;
    }


    .news-section div img {
        width: 100%;
        height: auto;
    }

    .secondary-news {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    .secondary-news > div {
        flex-direction: row;
        padding: 33px 0;
        width: 45%;
    }

    .secondary-news > div:first-child,.secondary-news > div:nth-child(2)  {
        border-top: none;
        padding-top: 0;
    }

    .secondary-news .more {
        width: calc(50% - 32px);
    }

    .news-section a {
        top: 0;
        left: 0;
    }

    .news-section a.button-plain {
        padding: 8px 48px;
        margin-top: 32px;
    }

    .news-section div.image-wrapper a {
        display: none;
    }

    .news-section div.more a, a.news-link {
        display: block;
        top: 16px;
        left: 0;
    }

    h2 a {
        text-decoration: none;
    }

    h2 a:hover {
        text-decoration: underline;
    }

    .main-new .new-title {
        margin: 32px 0 16px;
    }

    .secondary-news > div > p {
        width: calc(50% - 49px);
    }

    .secondary-news .image-wrapper {
        width: min(50%, 275px);
        height: 195px
    }

    .secondary-news .image-wrapper img {
        height: 100%;
        width: auto;
    }

    section.faqs details {
        width: calc(100% - 370px);
    }

    .faqs:after {
        display: block;
        background: url(imgs/ticket-bg.svg) no-repeat top left;
        content: "";
        position: relative;
        width: 550px;
        margin-bottom: -600px;
        height: 625px;
        left: calc(100% - 385px);
        transform: rotate(14deg);
        top: -395px;
    }

    .boxes {
        flex-direction: row;
        margin-top: 94px;
    }

    .two-cols {
        flex-wrap: nowrap;
    }

    .two-cols:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .two-cols:last-child {
        margin-bottom: 0;
    }

    .two-cols.last {
        flex-direction: inherit;
    }

    .two-cols img {
        width: 45%;
    }

    section.roulette {
        overflow: hidden;
        background-color: var(--maincolor1);
    }

    .picker-wrapper {
        width: 288px;
        box-shadow: 0 9px 15px #00000073;
        height: 288px;
    }

    div.roulette {
        width: 288px;
        height: 288px;
        border: 4px solid;
        margin: 40px auto;
    }

    .roulette-item {
        font-size: 22px;
        padding: 15px 0 0;
    }

    #r-item1 {
        height: 144px;
    }

    #r-item2 {
        top: 22px;
        left: 94px;
        height: 164px;
    }

    #r-item3 {
        top: 67px;
        left: 137px;
        height: 149px;
    }

    #r-item4 {
        top: 112px;
        left: 127px;
        height: 149px;
    }

    #r-item5 {
        top: 140px;
        left: 48px;
        right: 32px;
        height: 141px;
    }

    #r-item6 {
        top: 123px;
        right: 90px;
        height: 149px;
    }

    #r-item7 {
        top: 73px;
        right: 140px;
        height: 149px;
    }

    #r-item8 {
        top: 22px;
        right: 107px;
        height: 149px;
    }

    .midcircle {
        width: 50px;
        height: 50px;
    }

    .button-wrapper {
        margin: 24px auto 0;
    }

    .picker {
        height: 36px;
        width: 36px;
        top: -5px;
    }

    section.roulette .cta-1 i {
        padding-right: 5px;
    }

    .offer p {
        margin-bottom: calc(2 * var(--grid));
    }

    .stats-category-table-container table tr td span:first-child {
        display: none;
    }

    .last-results-container {
        justify-content: left;
        padding: 80px 80px 24px;
    }

    .last-results ul {
        margin: 16px 0;
    }

    .responsive-table td:before {
        display: none;
    }

    .stats-jackpots-table-container table td, .stats-jackpots-table-container table th {
        width: auto;
    }

    .compare-table-container table td:before {
        display: none;
    }

    .compare-table-container table tr {
        height: auto;
    }

    .compare-table-container table td, .compare-table-container table th {
        width: 30%;
    }

}

@media (min-width: 1200px) {
    body > section, main > section, footer {
        padding: 80px max(150px, calc(50% - 720px))
    }

    .banner-wrapper {
       padding: 0 max(150px, calc(50% - 720px)) 32px;
        justify-content: space-between;
    }

    .last-results-container {
        padding: 80px max(150px, calc(50% - 720px));
    }

    .last-results-container .selector-wrapper {
        margin-top: 16px;
    }

    .main-title {
        max-width: 50%;
        padding: 0;
        margin-top: 106px;
        display: inline-block;

    }

    .swiper-container .swiper {
        padding: 0 72px calc(3 * var(--grid))
    }
    .swiper-slide {
        padding: 0;
    }

    .offer p.main {
        font-size: 24px;
    }

    .news-section {
        padding: 80px max(150px, calc(50% - 720px));
    }

    .two-cols {
        margin-bottom: 64px;
        gap: 42px;
    }

    .cookie-banner {
        flex-direction: row;
        padding: 28px;
        left: 10%;
        right: 10%;
        width: 80%;
        bottom: 20px
    }

    .cookie-banner > .cookie-close {
        width: 10%;
    }
}

/* Registration modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.is-open {
    display: flex;
}
.modal-register {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-register .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}
.modal-register .modal-close:hover {
    background: #e0e0e0;
}
.modal-register h2 {
    margin-bottom: 20px;
    font-size: 22px;
}
.modal-register .register-form label {
    display: block;
    margin-bottom: 14px;
    width: 100%;
}
.modal-register .register-form input {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.modal-register .register-form input:invalid.touched {
    border-color: #c00;
}
.modal-register .register-form button[type="submit"] {
    width: auto;
    margin-top: 10px;
    padding: 12px 24px;
    cursor: pointer;
    background: var(--gradient);
    border: none;
    border-radius: 4px;
    font-weight: bold;
}
.modal-register .register-success {
    display: none;
    margin-top: 16px;
    width: auto;
    padding: 12px;
    background: #e8f5e9;
    border-radius: 4px;
    color: #2e7d32;
}
.modal-register .register-success.is-visible {
    display: block;
}
.modal-register .register-form.is-hidden {
    display: none;
}
