:root {
    --ejbackground: #fefcf9;
    --maincolor:  #F6C758 ;
    --ejbackground-dark: linear-gradient(90deg, #F6C758 0%, #CA7F26 100%);
    --ejbackground-grey: #f2f4f2;
    --llbackground: linear-gradient(90deg, #a5cd28, #69a507);
    --cta: linear-gradient(to top, #414141, #434343, #454545, #474747, #454545);
    --betslipBG: #fbf5ed;
    --font: sans-serif;
    --black: #012404;
    --bannertextcolor: #012404;
    --blackish:#232f1f;
    --grey: #efefef;
    --greengrey: #9AA89C;
    --ejgold: #CA7F26;
    --fontgrey: #565655;
    --llgreen: transparent linear-gradient(90deg, #A3CE28 0%, #69A507 100%) 0% 0% no-repeat padding-box;
    --green:#69A507;
    --ejyellow: #F6C758;
    --ejgrey: #D6D6D6;
    --shadow: 0px 3px 6px #00000029;
    --box-radius: 4px 4px 0 0;
    --yellowbg: transparent linear-gradient(90deg, #F6C758 0%, #CA7F26 100%) 0% 0% no-repeat padding-box;
    --maxW: 300px;
    --Hpadding: 4vw;
    --Vpadding: 6vw;
    --padding: var(--Vpadding) var(--Hpadding);
    --btheight: 12vw;
    --headerHeight: 13vw;
    --font9: 3.3vw;
    --font10: 3.5vw;
    --font11: 3.7vw;
    --font12: 3.9vw;
    --font13: 4.1vw;
    --font14: 4.3vw;
    --font15: 4.5vw;
    --font16: 4.7vw;
    --font18: 5.1vw;
    --font20: 5.3vw;
    --font22: 5.5vw;
    --font25: 5.9vw;
    --font35: 10vw;
    --font38: 12vw;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

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

html {
    scroll-behavior: smooth;
    color: #222;
    text-align: left;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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%;
}

*:focus {
    outline: none;
}

.padding {
    padding: var(--padding);
}

button, input {
    border: 0;
    background: none;
    outline: none;
    cursor: pointer;
    text-align: center;
}

select{
    cursor: pointer;
    outline: none;
    border: none;
    text-align-last: center;
    font-size: var(--font14);
    padding-left: 3px;
}

img{
    height: auto;
}

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

p a {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1 {
    font-size: var(--font20);
}

h2{
    font-size: var(--font18);
}

h3{
    font-size: var(--font16);
}

p{
    font-size: var(--font14);
    line-height: 1.4;
}

p span {
    line-height: 0;
}

.slogan a, .navlinks ul a, .stats-teaser a, .news-teaser a, #news a, #Faq a {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

header {
    position: fixed;
    z-index: 1000000000;
    background: var(--ejbackground-dark);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: var(--headerHeight);
    top: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 1;
    padding: 0 var(--Hpadding);
}

.navopened header {
    background: #fff;
}

.burger {
    width: 7vw;
    height: 5.5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: self-start;
    cursor: pointer;
}

.burger div {
    height: 2px;
    background: #333;
}

.burger.hidden{
    opacity: 0;
}

.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);
}

.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;
}

.stick .toptip {
    top: 0;
}

.shoppingcart {
    width: 6vw !important;
    transform: translate(-4px,0);
}

.toptip .shoppingcart {
    transform: none;
}

.navopened .toptip {
    top: 105vw;
}
.toptip span:nth-child(2), .cta-1 span {
    color: #fff;
    font-weight: 900;
    font-size: var(--font14);
    width: auto;
    padding: 0 6px;
    text-align: center;
}

.offer {
    padding: var(--padding);
    background: var(--black);
    color: var(--ejgold);
    text-align: center;
}

.offer p:nth-child(1) {
    font-weight: 300;
    font-size: var(--font11);
}

.offer p:nth-child(3) {
    margin: 2vw 0 4vw;
    font-weight: 300;
    font-size: var(--font15);
}

.offer p:nth-child(3) span {
    font-weight: 900;
    color: var(--ejyellow);
}

.offer p:nth-child(2) {
    color: var(--ejyellow);
    text-transform: uppercase;
}

.offer .cta-1 {
    width: 55vw;
    margin: auto;
}

.offer .cta-1 span {
    font-size: var(--font13);
}

nav {
    position: fixed;
    top: var(--headerHeight);
    height: 92vw;
    background: #fff;
    display: none;
    left: 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 var(--Hpadding);
    height: 100%;
}

.navopened nav {
   display: block;
}

header.shaded, .shaded .toptip{
    filter: brightness(0.3);
}

nav li {
    text-decoration: none;
    width: 85%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #ececec;
}

nav li:nth-child(1) {
    border: none;
}

nav li a {
    display: flex;
    color: var(--black);
    padding: 0;
    text-decoration: none;
    font-size: var(--font12);
    font-weight: 300;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.banner {
    display: flex;
    flex-wrap: nowrap;
    margin-right: 3%;
    width: 170px;
}

.banner.desktop {
    display: none;
}

.banner.mobile {
    margin-left: 10%;
}

.banner.mobile>a {
    width: auto;
}


.banner img {
    width: 56px;
    height: 56px;
    margin: 0 5px 0 0;
}

.banner span {
    display: block;
    line-height: 18px;
    font-weight: 200;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    color: #012406;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner div a {
    display: block;
    line-height: 18px;
    text-decoration: none;
    color: #69a507;
    position: relative;
    transition: color .125s ease-out;
    will-change: color;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
}

.overlay {
    background: #000000b5;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    width: 100%;
    z-index: 100;
}

.navopened .overlay {
    opacity: 1;
    visibility: visible;
}

.current-lang, .other-lang a{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #efefef;
    border-radius: 6px;
    margin-bottom: 1vw;
    height: 7vw;
    padding: 0 2vw;
}

.other-lang {
    display: none;
}

.langopened .other-lang{
    display: block;
}

.languages p{
    font-size: var(--font9);
    font-weight: 200;
    width: calc(100% - 5vw);
    text-align: center;
}

.languages img {
    width: 5vw;
    height: 3vw;
}

.languages {
    width: 26vw;
    height: auto;
    margin: 0;
    position: fixed;
    z-index: 1000000000000;
    overflow: hidden;
    top: 3vw;
    right: var(--Hpadding);
    display: none;
}

.navopened .languages{
    display: block;
}

.flag-closer {
    position: fixed;
    z-index: 100000000;
    bottom: 5vh;
    right: 0;
    background: var(--ejbackground-grey);
    border-radius: 100%;
    text-align: center;
    height: 11vw;
    width: 11vw;
    justify-content: center;
    align-items: center;
    display: none;
    margin: auto;
    left: 0;
    font-size: var(--font18);
    padding: 3px 0 0;
    font-weight: 600;
    cursor: pointer;
}

.langopened .flag-closer{
    display: flex;
}

main {
    margin-top: var(--headerHeight);
    display: flex;
    flex-wrap: wrap;
}

.banner-wrapper {
    position: relative;
}

.offer-wrapper {
    margin-top: 3px;
}

/*AB TESTING*/

:lang(de-DE) #resultsPage p.eurojackpot, :lang(de) #resultsPage p.eurojackpot {
    display: none;
}

:lang(de-DE) #resultsPage .next-jackpot-wrapper, :lang(de) #resultsPage .next-jackpot-wrapper {
    position: initial;
}

:lang(de-DE) .next-jackpot-wrapper {
    padding-top: calc(var(--Vpadding) + 50px);
}

/*:lang(de-DE) #resultsPage .lastresults, :lang(de) #resultsPage .lastresults  {*/
/*    order: -1;*/
/*}*/

.header-image-container {
    display: none;
}

.next-jackpot-wrapper {
    background: var(--yellowbg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: .5vw;
}

.next-jackpot-wrapper.with-offer {
    margin: 0;
}

.next-jackpot-wrapper.with-promo {
    padding-top: 15vw;
}

.next-jackpot-wrapper span.spezial-jackpot{
    background: linear-gradient(
            90deg,#a30855 0,#5b0841);
    color: #fff;
    font-size: var(--font10);
    border-radius: 0 0 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7vw;
    font-weight: 600;
}

.next-jackpot-wrapper p.eurojackpot,.next-jackpot-wrapper h1.eurojackpot {
    font-weight: 600;
    position: absolute;
    top: -9vw;
    right: var(--Hpadding);
    width: auto;
    color: var(--black);
    z-index: 1000000000;
    font-size: var(--font15);
}


.next-jackpot-wrapper .next-left{
    width: 70%;
}

.next-jackpot-wrapper .next-right{
    width: 30%;
}

.next-jackpot-wrapper .cta-1 {
    margin: 6vw 0 0;
}

.jackfri{
    font-size: var(--font12);
    font-weight: 600;
    display: block;
    line-height: 1;
}

.jackcurr{
    font-size: var(--font35);
    font-weight: 900;
    line-height: .8;
    padding: 3vw 0 0;
}

.jackpot-sign{
    color: #fff;
    font-size: var(--font35);
    font-weight: 900;
    padding: 0 0 2vw;
    line-height: 1;
}

.next-jackpot-wrapper .logo-image-container {
    width: 52%;
    position: relative;
    top: -81px;
    transition: 0.3s;
}

.next-jackpot-wrapper .logo-image-container p {
    font-family: var(--font);
    color: #8e5f2d;
    font-size: 25px;
    font-weight: bold;
}

.cta-1 {
    background: var(--llbackground);
    color: #fff;
    text-decoration: none;
    margin: 3vw 0;
    font-size: var(--font14);
    width: 75%;
    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;
}

.cta-1 i{
    padding-right: 2vw;
    width: auto;
    color: #222;
}

.cta-2 {
    width: 75%;
    margin: 4vw 0;
    color: #4f7b08;
    border-radius: 30px;
    display: flex;
    height: var(--btheight);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    font-size: var(--font14);
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--green);
    padding-top: 1vw;
    box-shadow: var(--shadow);
}

.newsletter .cta-2 {
    height: 38px;
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
}

.millions {
    font-size: var(--font25);
    color: #fff;
    font-weight: 900;
}

.checkerresults h3.box-title {
    margin: 15px 0 0;
}

.lastresults{
    background: var(--yellowbg);
    padding: var(--padding);
}

.lastresults h2.title{
    font-weight: 500;
}


.lastresults h2.time {
    padding: 1vw 0;
    display: block;
    font-size: var(--font14);
}

.lastresults h2.solo {
    font-size: var(--font25);
    margin-top: var(--Vpadding);
}

.breadcrumbs{
    display: flex;
    align-items: center;
    padding: 3vw var(--Hpadding);
    gap: 1vw;
}

.breadcrumbs a{
    font-size: var(--font11);
    width: auto;
}

.breadcrumbs p{
    font-size: var(--font11);
    color: #444;
    font-weight: 100;
    width: auto;
}

ul.results {
    justify-content: flex-start;
    display: flex;
    margin: 4vw 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 1.5vw;
}

.lottery-ball{
    height: 10vw;
    font-size: var(--font13);
    width: 10vw;
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: .6vw;
    font-weight: 500;
    text-align: center;
}

.lottery-ball.extra{
    background: var(--ejgold);
    color: #fff;
}

.date-wrapper {
    padding: 3vw var(--Hpadding);
}

.date-slide {
    background: #fff;
    padding: 0 3vw;
    margin: 3vw 0;
    border-radius: 8px;
}

.date-slide select {
    font-size: var(--font14);
    color: #985f1a;
    height: var(--btheight);
    text-align-last: left;
    font-weight: 500;
    z-index: 10;
}

h2.inner {
    margin-top: 24px;
}

/*.results-table-wrapper {*/
/*    padding: var(--padding);*/
/*    background: #fff;*/
/*}*/

/*.results-table-header {*/
/*    display: flex;*/
/*    width: 100%;*/
/*    padding: 8px 5px;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    margin: 5px 0;*/
/*}*/

/*.results-table-header span {*/
/*    color: var(--fontgrey);*/
/*}*/

/*.results-table-header span:nth-child(1) {*/
/*    width: 50%;*/
/*    text-align: left;*/
/*}*/

/*.results-table-header span:nth-child(2) {*/
/*    width: 20%;*/
/*    text-align: right;*/
/*    padding-right: 5px;*/
/*}*/

/*.results-table-header span:nth-child(3) {*/
/*    width: 30%;*/
/*    text-align: left;*/
/*}*/

/*.results-table-row {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    padding: 3px 5px;*/
/*    align-items: baseline;*/
/*}*/

/*.results-table-row span {*/
/*    color: var(--fontgrey);*/
/*    font-weight: 700;*/
/*}*/

/*.results-table-row span:nth-child(1) {*/
/*    width: 12%;*/
/*    text-align: left;*/
/*}*/

/*.results-table-row span:nth-child(2) {*/
/*    width: 50%;*/
/*    text-align: right;*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*}*/

/*.results-table-row span:nth-child(2) div {*/
/*    color: var(--fontgrey);*/
/*    background: var(--ejyellow);*/
/*    width: auto;*/
/*    padding: 6px 5px 6px 30px;*/
/*    box-shadow: var(--shadow);*/
/*    border-radius: 2px 0 0 2px;*/
/*}*/

/*.results-table-row span:nth-child(3) {*/
/*    width: 35%;*/
/*    text-align: left;*/
/*    display: flex;*/
/*    margin-left: 2px;*/

/*}*/

/*.results-table-row span:nth-child(3) div {*/
/*    color: white;*/
/*    background: var(--fontgrey);*/
/*    width: auto;*/
/*    padding: 6px 20px 6px 5px;*/
/*    box-shadow: var(--shadow);*/
/*    border-radius: 0 2px 2px 0;*/
/*}*/

/*.results-table-row span:nth-child(3) div p {*/
/*    color: white;*/
/*    display: initial;*/
/*    line-height: 0;*/
/*}*/

/*table.results-table {*/
/*    font-size: var(--font12);*/
/*    margin: 2vw 0;*/
/*}*/

/*table.results-table tr {*/
/*    display: flex;*/
/*    width: 100%;*/
/*    align-items: center;*/
/*    margin: 2vw auto;*/
/*    justify-content: space-between;*/
/*    position: relative;*/
/*    height: 9.5vw;*/
/*}*/

/*table.results-table tr td:nth-child(1) {*/
/*    width: 45%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    font-size: var(--font11);*/
/*    font-weight: 500;*/
/*}*/

/*table.results-table tr td:nth-child(2) {*/
/*    width: auto;*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    position: absolute;*/
/*    top: 4.4vw;*/
/*    left: 0;*/
/*    font-weight: 100;*/
/*    font-size: var(--font10);*/
/*}*/
/*table.results-table tr td:nth-child(3) {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 55%;*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    align-items: center;*/
/*    text-align: right;*/
/*}*/

/*table.results-table tr td:nth-child(3) div {*/
/*    width: auto;*/
/*    padding: 1.8vw 2vw 1.8vw 8vw;*/
/*    background: var(--yellowbg);*/
/*    border-radius: 8px;*/
/*    text-align: right;*/
/*    font-size: var(--font12);*/
/*    font-weight: 600;*/
/*    color: #fff;*/
/*}*/

/*table.results-table tr:nth-child(1) td:nth-child(3) div{*/
/*    background: var(--llgreen);*/
/*    box-shadow: var(--shadow);*/
/*    color: #333;*/
/*}*/

/*table.results-table tr td:nth-child(3) div span {*/
/*    font-size: var(--font9);*/
/*}*/


/*table {*/
/*    font-size: var(--font14);*/
/*    color: var(--black);*/
/*    margin: 4vw auto;*/
/*    border-collapse: collapse;*/
/*    border-spacing: 0;*/
/*}*/


/*.checker table.results-table {*/
/*    background: #fff;*/
/*    width: 100%;*/
/*    border-radius: 4px;*/
/*}*/


/*table.results-table tr td.name span {*/
/*    font-weight: 300;*/
/*}*/


/*table.czindex {*/
/*    background: white;*/
/*    border-radius: var(--box-radius);*/
/*    border: none;*/
/*    width: 100%;*/
/*}*/

/*.td-bottom{*/
/*    font-weight: 300;*/
/*}*/

/*table.eurojackpot_table {*/
/*    background: #fff;*/
/*    overflow: hidden;*/
/*}*/


/*.rules-table {*/
/*    background: #fff;*/
/*    border-radius: 4px;*/
/*    overflow: hidden;*/
/*}*/

/*.rules-table tr td {*/
/*    font-size: var(--font12);*/
/*    padding: 3vw;*/
/*    text-align: left;*/
/*    width: auto;*/
/*}*/

/*.rules-table tr td:first-child {*/
/*    font-weight: 300;*/

/*}*/

/*.rules-table tr td:nth-child(2) {*/

/*}*/

/*.rules-table tr:nth-child(odd) {*/
/*    background: var(--ejbackground);*/
/*}*/

/*.newsblock table{*/
/*    width: 100%;*/
/*    text-align: left;*/
/*    padding: 10px 10px;*/
/*    margin: 0 auto;*/
/*}*/

/*.newsblock table tr{*/
/*    font-size: 14px;*/
/*}*/

/*.newsblock table tr:nth-child(1) td{*/
/*    font-weight: bold;*/
/*}*/

/*.newsblock table tr td{*/
/*    padding: 10px;*/
/*}*/

/*TABLES*/

.prizepool h2 {
    margin-bottom: 3vw;
}
table {
    font-size: var(--font10);
    border-collapse: collapse;
}

table tr td, table tr th {
    padding: 2vw 3vw;
    text-align: left;
}

.table-container {
    padding: var(--padding);
}

.table-container h2, .table-container h3 {
    margin: 0 0 3vw;
}

.text-wrapper .table-container, .text-box .table-container {
    padding: var(--Vpadding) 0;
}

.table2 table, .table3 table {
    border: 1px solid var(--maincolor);
}

.table2 tr, .table3 tr {
    border-bottom: 1px dotted var(--maincolor);
}

table tr:first-child {
    background: var(--maincolor);
    color: var(--bannertextcolor);
}

.table2 tr:last-child, .table3 tr:last-child {
    border: none;
}

.table2 td, .table2 th {
    width: 50%;
}

.table3 td, .table3 th {
    width: 33%;
}

.table2plus1 table {
    background: #fff;
    border: 1px solid var(--maincolor);
}

.table2plus1 table tr {
    border-bottom: 1px dotted var(--maincolor);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 12vw;
}

.table2plus1 table tr:last-of-type {
    border: none;
}

.table2plus1 table td, .table2plus1 table th {
    width: 50%;
    padding: 0;
}

.table2plus1.prizepool table td {
    width: auto;
    padding: 0;
}

.table2plus1.prizepool table tr {
    border: none;
}

.table2plus1.prizepool table td:nth-child(3) span{
    width: auto;
    padding: 1.8vw 2vw 1.8vw 8vw;
    background: var(--yellowbg);
    border-radius: 8px;
    text-align: right;
    font-size: var(--font10);
    font-weight: 600;
    color: #fff;
}

.table2plus1.prizepool table tr:nth-child(1) td:nth-child(3) span{
    background: var(--llgreen);
    box-shadow: var(--shadow);
    color: #333;
}

.table2plus1 td:nth-child(1), .table2plus1 th:nth-child(1) {
    position: absolute;
    top: 2vw;
    left: 2vw;
}

.table2plus1 td:nth-child(2), .table2plus1 th:nth-child(2) {
    width: auto;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 7vw;
    left: 2vw;
    font-weight: 100;
    font-size: var(--font9);
}

.table2plus1 td:nth-child(3), .table2plus1 th:nth-child(3) {
    position: absolute;
    top: 2vw;
    right: 2vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.table2plus1 td:nth-child(3) span {
    width: auto;
    padding: 2.5vw 2vw 2.5vw 9vw;
    background: var(--grey);
    border-radius: 8px;
    text-align: right;
    font-size: var(--font12);
    font-weight: 600;
}

.responsive-table {
    width: 100%;
    margin: 0 0 2vw 0;
    overflow: hidden;
}

.responsive-table h2 {
    padding: 0 0 2vw;
}

.responsive-table table {
    width: 100%;
}

.responsive-table tr:nth-child(1) {
    display: none;
}

.responsive-table tr{
    background: #fff;
    display: block;
    margin: 0 0 3vw;
    border: 2px solid var(--maincolor);
    border-radius: 4px;
}
.responsive-table tr td {
    display: block;
    padding: 2vw;
    border-bottom: 1px dotted var(--maincolor);
    font-weight: 500;
}

.responsive-table tr td {
    display: flex;
}

.responsive-table tr td span:nth-child(1) {
    font-weight: 300;
    width: 35%;
    padding: 0 10px 0 0;
}

.responsive-table tr td span:nth-child(2) {
    width: 60%;
}

.responsive-table tr td:nth-child(1) {
    background: var(--maincolor);
    color: var(--bannertextcolor);
}

.responsive-table tr td:last-child {
    border: none;
}

.no-heading tr:first-child {
    background: none!important;
    color: var(--black);
}

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

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

p.note i{
   width: auto;
}

.text-box{
    width: 100%;
    padding: var(--padding);
    background: var(--ejbackground-grey);
}

.alt-bg {
    background: var(--yellowbg);
}

.text-box h2{
    font-weight: 600;
    margin: 6vw 0 0;
}

.text-box h2:first-of-type {
    margin: 0 0 2vw;
}

.text-box p {
    font-weight: 300;
    margin: 5vw 0;
}

.no-padding {
    padding-bottom: 0;
}

ul.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 4vw 0 0;
    gap: 3vw;
}

#checker .numbers li {
    cursor: pointer;
}

#checker .lottery-ball.extra {
    border: 1px solid #985f1a;
    color: #985f1a;
    background: #fff;
}

.footnote {
    margin: 2vw auto;
    font-size: var(--font12);
    font-weight: 300;
}

.footnote.flat{
    margin: 0;
}

.checker, .stats-teaser {
    background: var(--grey);
    padding: var(--padding);
}

.checkerbg p {
    margin: 5vw 0 0;
    font-size: var(--font12);
    font-weight: 300;
}

.checker p.note {
    color: #333;
}

.quicktip {
    padding: var(--padding);
    background: var(--yellowbg);
}

.quicktip p.h2{
    color: #333;
    font-weight: 500;
}

.quickline, .quickline .stars {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 3vw 0 0;
    width: 100%;
    gap: 0 2vw;
}

.quicktip .cta-2{
    background: none;
    border: 1px solid #fff;
    box-shadow: none;
    color: #fff;
}

.quicktip .cta-2 img{
    padding-right: 2vw;
    width: 9vw;
}

.stats-teaser-table li p {
    font-size: 12px;
    width: 100%;
}

.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: var(--font14);
    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(--yellowbg);
    color: #fff;
}

.stats-teaser ul{
    margin: 3vw 0;
}

.stats-teaser ul, .stats-teaser li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.stats-teaser li{
    justify-content: center;
    width: 20%;
}

.stats-teaser li p{
    font-size: var(--font9);
    font-weight: 300;
    width: 100%;
    text-align: center;
    margin: 1vw 0;
}

.stats-teaser li label{
    font-size: var(--font13);
    text-align: center;
}

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

.stats-teaser p {
    font-size: var(--font14);
}

.news-teaser{
    padding: var(--padding);
}

.new-wrapper{
    margin: 5vw 0;
    display: block;
}

.new-wrapper .image-container{
    height: 45vw;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

p.featured{
    position: absolute;
    background: var(--yellowbg);
    padding: 3px 20px;
    font-size: 13px;
    line-height: 14px;
    color: white;
    font-weight: 700;
    top: 0;
}

.news-teaser .new-wrapper img {
    width: 100%;
    margin: -5vw auto 0;
    filter: brightness(0.9);
}

.new-wrapper h3{
    margin: 3vw 0 1vw;
    font-size: var(--font16);
    font-weight: 500;
}

p.reading {
    font-weight: 600;
    color: #4f7b08;
    margin: 0;
}

.news-teaser .cta-2{
    box-shadow: none;
}

.h2-wrapper{
    padding: var(--padding);
    background: var(--yellowbg);
}

.ej-video iframe {
    width: 95%;
    height: 240px;
}

.ej-video {
    background: var(--blackish);
    padding: var(--padding);
}

.ej-video h2 {
    color: #e9b826;
    padding: 0 0 4vw;
}

.videowrapper{
    overflow: hidden;
    border-radius: 10px;
}

.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 .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%;
}

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

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

.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 iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#singleNew .h1-container {
    margin-top: 5px;
}

#singleNew main ul{
    text-align: left;
    font-weight: 300;
    width: 90%;
    margin: auto;
}

#singleNew main ul li{
    list-style: circle;
    line-height: 30px;
}

#singleNew .newsblock h3{
    text-align: left;
    padding-left: 5px;
}

#singleNew .newsblock time{
    font-size: 12px;
    font-weight: 300;
    margin: 0 0 10px;
    display: block;
}


.news-date time {
    color: var(--semiblack);
    font-size: 12px;
    margin-left: 70%;
}

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

.infobox div {
    width: 50%;
}

.infobox h2 {
    color: var(--ejgold);
    text-align: center;
}

.infobox div img {
    width: 25%;
    margin: 5vw auto 2vw;
    max-width: 50px;
    filter: invert(1);
    display: block;
}

.infobox div p {
    text-align: center;
    padding: 0;
    margin: 1vw auto;
    font-size: var(--font15);
    font-weight: 300;
    color: var(--ejgold);
}

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

.text-wrapper {
    display: block;
    margin: 20px auto;
    width: 100%;
    text-align: left;
}

.text-wrapper h2 {
    text-align: center;
}

.text-wrapper img {
    display: block;
    width: 90%;
    margin: auto;
    padding: 0;
}

.text-wrapper p {
    display: block;
}

.newsletter {
    padding: var(--padding);
    background: var(--yellowbg);
}

.newsletter p.h2{
    margin: 0 0 2vw;
    font-weight: 600;
}

.newsletter .email {
    border-radius: 8px;
    font-size: var(--font13);
    background: #fff;
    margin: 4vw auto;
    height: var(--btheight);
    padding-left: 8px;
    display: flex;
}

.newsletter .submit {
    border-radius: 25px;
    font-size: 16px;
    margin: 15px auto;
    height: 45px;
    box-shadow: var(--shadow);
}

.newsletter label {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2vw;
}

.newsletter .input-wrapper{
    width: 7vw;
    height: 7vw;
    background: #fff;
    font-weight: 300;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.newsletter .input-wrapper i{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    padding: 2px 0 0 2px;
    color: white;
}

input[type="checkbox"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.newsletter .input-wrapper.checked {
    background: var(--llgreen);
}

.newsletter label p {
    width: calc(100% - 9vw);
    font-size: var(--font12);
    font-weight: 300;
}

footer {
    width: 100%;
    text-align: center;
    background: var(--grey);
    padding: var(--padding);
}

footer .cta-2{
    box-shadow: none;
    background: none;
    margin: 0 auto;
    color: var(--black);
}

footer p {
    color: #6b6969;
    font-size: var(--font13);
    margin: 4vw auto;
    text-align: center;
}

footer p.koop{
    color: #6b6969;
    margin: 15px 0 10px;
}

footer div:nth-child(3) p {
    margin: 0 auto;
}

footer img {
    width: 50%;
    height: auto;
}

footer img.smile {
    width: 50%;
    margin: 20px auto;
    display: block;
}

footer .footer-logos ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

footer .footer-logos ul li{
    width:40%;
    text-align: center;
    margin: 4vw 0;
}

footer .footer-logos ul li img{
    width: 75%;
}

footer .footer-logos ul li img[alt="plus 18"]{
    width: 100%;
}

.ixtx {
    display: none;
}


details{
    padding: 4vw var(--Hpadding);
    border-bottom: 1px solid #eceaea;
    cursor: pointer;
    background: #fff;
}

details p {
    font-weight: 300;
    margin: 1vw 0 2vw;
}

summary {
    font-size: var(--font14);
    font-weight: 500;
    color: var(--fontgrey);
}

details[open] summary {
    font-weight: 900;
}

details img {
    width: 90%;
}

#checker .lottery-ball.selected, #checker .lottery-ball.number-right, #checker .lottery-ball.lottery-ball.extra.number-right {
    background: var(--ejgold);
    color: white;
}

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

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

.checkerresults p.text {
    text-align: left;
    margin: 8px 0;
    font-size: 15px;
}

.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;
}

.cta-2.back2news{
    position: fixed;
    bottom: 5px;
    right: 20px;
    width: 120px;
    text-align: center;
    font-size: 15px;
    opacity: 0;
    transition: 0.3s;
}

.cta-2.back2news.is-visible{
    opacity: 1;
}

.newsblock .image-container img{
    width: 100%;
}

.back {
    background: var(--ejgrey);
    width: 100%;
    display: block;
    border-radius: 0;
    padding: 10px 15px;
    text-align: left;
}

ul.faqs {
    text-align: left;
    padding: 0 15px;
}

ul.faqs li {
    margin-bottom: 8px;
    list-style: circle;
}

ul.faqs li a {
    color: var(--semiblack);
    text-decoration: none;
}

.czindex tr th:nth-child(1), .czindex tr td:nth-child(1) {
    width: 10%;
    padding: 10px;
    text-align: left;
}

.czindex tr th:nth-child(2), .czindex tr td:nth-child(2) {
    width: 28%;
}


.czindex tr th:nth-child(3), .czindex tr td:nth-child(3) {
    width: 30%;
    font-weight: 500;
}

.notfound img {
    width: 30%;
}

.notfound {
    margin: 30px auto;
    font-weight: 200;
}

.esindex tr th:nth-child(1), .esindex tr td:nth-child(1) {
    width: 31%;
}

.esindex tr th:nth-child(2), .esindex tr td:nth-child(2) {
    width: 25%;
}


.esindex tr th:nth-child(3), .esindex tr td:nth-child(3) {
    width: 20%;
}

.faqs {
    background: white;
}

.rules-disclaimer p {
    font-size: 12px;
    font-style: italic;
    text-align: left;
    padding-left: 5px;
}

.number_betslip {
    background: white;
    width: 38px;
    height: 30px;
    border-radius: 4px;
    color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number_betslip.checked {
    background: #444;
    color: white;
}

.adbox {
    padding: 16px;
    background: var(--ejgrey);
    margin: 0;
    width: 100%;
}

.adbox p {
    font-size: 14px;
    line-height: 20px;
}

.adbox img {
    margin: 10px auto 0;
    width: 18%;
}

.adbox p:nth-child(5) {
    font-family: var(--iconfont);
    font-size: 25px;
    text-align: center;
}

button {
    background: none;
    border: none;
}

.checker button.cta-2-content {
    color: var(--llgreen);
    font-size: 20px;
    font-weight: 500;
}

.link-news.more {
    text-align: right;
    padding-right: 20px;
    font-size: 14px;
}

#singleNew article {
    padding: 0;
}

#singleNew .logo-wrapper div {
    padding: 20px 20px 0;
    background-color: var(--ejbackground);
}

#singleNew a {
    text-decoration: none;
}

.logo-wrapper img {
    display: none;
}

#home .logo-wrapper img, #playpage .logo-wrapper img {
    display: initial;
}

.newsletter input {
    border: none;
}

.newsletter #mce-responses {
    display: block;
    width: 100%;
    margin: 20px auto;
}

.newsblock {
    width: 100%;
    display: block;
    margin: 10px auto;
    background: var(--grey);
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}

#singleNew .newsblock {
    width: 100%;
    display: block;
    margin: 0 auto 0;
    background: var(--grey);
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}

.faqlink {
    display: block;
    margin: 10px auto;
    color: white;
    border: 1px solid #484848;
    padding: 10px;
    width: 70%;
    border-radius: 4px;
}

#notfound article {
    background: var(--ejgrey);
    padding: 100px 50px;
    margin-top: 45px;
}

#notfound article p{
    font-size: 35px;
    line-height: 40px;
    font-weight: 300;
}

.spezial {
    position: absolute;
    top: -20px;
    left: 0;
    background: linear-gradient(90deg, #a30855 0, #5b0841);
    padding: 5px 10px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 1px 1px 3px 0 #1f1f1f;
}

.spezial:lang(hu-HU) {
    font-size: 12px;
    padding: 5px 8px;
}

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

footer .footer-logos .gambleaware-a {
    display: flex;
    margin: 20px auto;
    justify-content: center;
}

.newsblock .image-container {
   display: none;
}

.last-results h2{
    padding: 5vw var(--Hpadding) 0;
    background: var(--ejbackground-dark);
}

.past-results {
    padding: var(--padding);
    background: var(--yellowbg);
    margin-bottom: 1px;
}

.past-results p {
    font-size: var(--font12);
    font-weight: 300;
}

.past-results p:first-child {
    font-size: var(--font13);
    font-weight: 700;
}

.past-results a, .past-results span {
    font-size: 12px;
    padding: 5px 0 0;
    display: block;
    font-weight: 100;
    width: 100%;
}

.results-balls .pending {
    font-weight: 700;
    padding: 3vw 0 0;
    font-size: var(--font16);
}

.past-results ul.results:nth-child(2){
    margin: 12px 0 0;
}

.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;
}

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

.awaiting-results p {
    font-size: var(--font10);
}

@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;
    }

    .burger {
        width: 40px;
        height: 28px;
        align-items: center;
    }

    .burger div {
        height: 3px;
    }

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



    .next-jackpot-wrapper{
        padding: var(--padding);
        margin-bottom: 2px;;
        justify-content: space-between;
    }

    .next-jackpot-wrapper .next-left {
        width: 45%;
    }

    .next-jackpot-wrapper .next-right{
        text-align: center;
        width: 30%;
    }

    .next-jackpot-wrapper .next-right img {
        width: 130px;
    }

    .header-image-container {
        display: block;
        position: relative;
        height: 370px;
        background-image: url("../../images/eurolotto_stage.jpg");
        background-size: cover;
        background-position: 0 0;
        background-repeat: no-repeat;
    }

    .header-image-container p{
        text-align: center;
        font-size: var(--font35);
        font-weight: 900;
        color: #fff;
        line-height: 1;
        text-shadow: 1px 1px 13px #000;
    }

    .next-jackpot-wrapper span.spezial-jackpot {
        height: 35px;
        width: 180px;
        font-size: 12px;
    }

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

    .languages {
        width: 100px;
        top: 10px;
    }

    .languages p {
        width: calc(100% - 25px);
        font-size: 10px;
    }

    .languages img {
        width: 23px;
        height: 16px;
    }

    .flag-closer {
        margin: 15px auto;
        width: 45px;
        height: 45px;
        position: static;
    }

    .current-lang, .other-lang a {
        margin-bottom: 6px;
        padding: 6px 10px;
        height: 32px;
    }

    nav ul{
        justify-content: space-between;
        padding: 0 var(--Hpadding);
    }

    nav li{
        width: auto;
        border: none;
    }

    nav li a {
        font-size: 2vw;
        justify-content: center;
    }

    .navopened nav {
        height: 50px;
    }

    .navopened .toptip{
        top: 100px;
    }

    .smile-container {
        display: flex;
        justify-content: center;
    }

    .smile-container img{
        width: 60%;
        max-width: 410px;
    }

    .slogan {
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3px;
    }

    .next-jackpot-wrapper p.eurojackpot, .next-jackpot-wrapper h1.eurojackpot{
        top: -40px;
        right: calc(var(--Hpadding) + 4%);
        color: #fff;
        text-shadow: 1px 1px 20px black;
        font-size: 25px;
    }

    .next-jackpot-wrapper.with-promo {
        padding-top: 50px;
    }

    .jackfri {
        font-size: 16px;
    }

    .jackcurr {
        padding: 10px 0 0;
    }

    .jackpot-sign {
        padding: 0 0 5px;
    }

    ul.results {
        gap: 5px;
        margin: 15px 0;
    }

    ul.results li, .lottery-ball, .numbers li{
        width: 42px;
        height: 42px;
        font-size: 18px;
        padding-top: 3px;
    }

    /*TABLES*/
    .table-container {
        padding: 25px var(--Hpadding);
    }

    .text-wrapper .table-container, .text-box .table-container {
        padding: 25px 0;
    }

    .table-container h2, .table-container h3 {
        margin: 0 0 15px;
    }

    table {
        font-size: 14px;
        width: auto;
        min-width: 50%;
    }

    .table2plus1 table {
        width: 100%;
    }

    table tr td, table tr th {
        padding: 10px 15px;
    }

    .table2plus1 table tr {
        height: 55px;
    }
    .table2plus1 td:nth-child(1), .table2plus1 th:nth-child(1) {
        top: 10px;
        left: 15px;
    }

    .table2plus1 td:nth-child(2), .table2plus1 th:nth-child(2) {
        top: 30px;
        left: 15px;
        font-size: 12px;
    }

    .table2plus1 td:nth-child(3), .table2plus1 th:nth-child(3) {
        top: 10px;
        right: 15px;
    }

    .table2plus1 td:nth-child(3) span,.table2plus1.prizepool table td:nth-child(3) span  {
        padding: 10px 10px 10px 30%;
        font-size: 14px;
    }

    .table2plus1.prizepool table td:nth-child(3) {
        width: 50%;
    }

    .responsive-table {
        margin: 0;
    }

    .prizepool h2 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .responsive-table tr:nth-child(1),  .responsive-table tr {
        display: flex;
    }

    .responsive-table tr td {
        display: table-cell;
        padding: 10px;
        font-weight: 500;
        border: none;
    }

    .responsive-table tr th {
        background: var(--maincolor);
        color: var(--bannertextcolor);
        font-weight: 900;
        padding: 10px;
    }

    .responsive-table tr {
        margin: 0;
        border: 1px solid var(--maincolor);
    }

    .responsive-table table {
        width: 100%;
        background: var(--maincolor);
        border: 2px solid var(--maincolor);
        border-radius: 4px;
    }

    .responsive-table tr td span:first-of-type {
        display: none;
    }

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

    .info {
        width: 20px;
        height: 20px;
    }

    p.note {
        gap: 5px;
        margin: 15px 0;
    }

    .ej-video h2 {
        padding: 15px 0px;
    }

    .lastresults h2 strong{
        display: block;
    }

    .date-slide {
        width: 50%;
        max-width: 300px;
        padding: 0 10px;
        margin: 15px 0;
    }

    .checkerbg p{
        text-align: left;
        margin: 25px 0 0;
    }

    ul.numbers {
        gap: 10px;
        margin: 15px 0 0;
    }

    .cta-1 {
        margin: 15px 0;
        width: var(--maxW);
    }

    .offer p:nth-child(3) {
        margin: 10px auto 15px;
    }

    .offer .cta-1 {
        width: 320px;
    }

    .cta-2 {
        padding-top: 3px;
        margin: 15px 0;
       width: var(--maxW);
    }

    .shoppingcart {
        width: 25px !important;
        transform: translate(-6px,0);
    }

    .checker .cta-2 {
        margin: 20px 0;
    }

    .footnote {
        padding: 15px 0 0;
    }

    .quickpick form{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 15px;
    }

    .quicktip .left{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin: 15px 0 0;
    }

    .right {
        width: 50%;
    }

    .quickline, .quickline .stars{
        width: 50%;
        margin: 10px 0 5px;
        gap: 0 7px;
    }

    .quicktip .cta-2 img {
        padding-right: 15px;
        width: 44px;
    }

    .stat-selector{
        display: none;
    }

    .swapper-b{
        display: block;
    }

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

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

    .stats-teaser{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .stats-teaser ul {
        margin: 15px 0;
    }

    .stats-teaser .cta-1{
        margin: 20px 0;
    }

    .stats-teaser li p {
        margin: 5px 0;
        font-size: 10px;
    }

    .news-teaser {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: baseline;
    }

    .new-wrapper {
        width: 32%;
        margin: 20px 0 0;
    }

    .new-wrapper .image-container {
        height: auto;
    }


    .new-wrapper h3{
        margin: 0 0 8px;
        font-size: 16px;
    }

    p.reading {
        font-size: 14px;
    }

    aside{
        background: var(--yellowbg);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: baseline;
        padding: var(--padding);
    }

    .h2-wrapper{
        background: none;
        padding: 0;
    }

    .h2-wrapper h2, .newsletter p.h2{
        font-size: 24px;
        margin: 0 0 10px;
    }

    .aside-content{
        width: 46%;
    }

    .aside-content details {
        padding: 20px var(--Hpadding);
        background: #fff;
    }

    .aside-content details {
        padding: 20px;
    }

    details p {
        margin: 6px 0 12px;
        font-size: 16px;
    }

    .newsletter{
        width: 100%;
        background: none;
        padding: 0;
    }

    #home .newsletter, #playpage .newsletter{
        width: 46%;
    }

    .newsletter input[type=email] {
        width: 100%;
        margin: 15px 0;
    }

    .newsletter .input-wrapper {
        width: 30px;
        height: 30px;
    }

    .newsletter .submit{
        margin: 20px 0 0;
    }

    .newsletter label p {
        font-size: 14px;
        padding: 0 0 0 10px;
    }

    footer img{
        max-width: 180px;
    }

    footer .footer-logos ul li {
        width: calc(100% / 6);
    }

    .results-balls .pending {
        padding: 0;
    }

    .past-results ul.results {
        margin: 0 0 15px;
    }

    .text-box h2, .text-box h3 {
        margin: 20px 0 0;
    }

    .text-box h2:first-of-type {
        margin: 0;
    }

    .text-box p {
        margin: 15px 0;
    }

    .infobox div {
        width: 33%;
    }

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

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

    .adbox p {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 40px;
    }

    .logo-wrapper div.slogan {
        text-align: right;
    }

    .logo-wrapper div {
        font-size: 25px;
        margin: 10px auto;
    }

    .slide {
        width: 70%;
    }

    .lastresults h2.time {
        padding: 10px 0;
    }

    .statblocks, .hotcold {
        display: flex;
        flex-wrap: wrap;
        margin: auto;
        justify-content: center;
        width: 100%;
    }

    #news h1{
        width: 100%;
    }

    .faqs{
        padding: var(--padding);
    }

    .hotcold .stats_section {
        width: 50%;
    }

    .adbox img {
        width: 15%;
        max-width: 50px;
    }

    .adbox p:nth-child(4) {
        font-size: 16px;
    }

    .last-results h2{
        padding: var(--padding);
    }

    .past-results{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .past-results .left {
        width: 55%;
    }

    .past-results .right{
        width: 45%;
    }

    .past-results p:first-child {
        font-size: 20px;
        font-weight: 700;
    }

    .past-results p {
        font-size: 15px;
        font-weight: 300;
    }

    .past-results a,  .past-results span  {
        font-size: 15px;
        padding: 8px 0 0;
    }

    .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;
    }

    .awaiting-results p {
        font-size: var(--font14);
    }
}

@media (min-width: 1000px) {

    :lang(de-DE) .next-jackpot-wrapper {
        padding-top: 30px;
    }

    @font-face {
        font-family: 'DaxlinePro';
        font-display: auto;
        src: url("../fonts/daxlinelight.eot");
        src: url("../fonts/daxlinelight.eot?#iefix") format("embedded-opentype"), url("../fonts/daxlinelight.woff") format("woff"), url("../fonts/daxlinelight.ttf") format("truetype");
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'DaxlinePro';
        font-display: auto;
        src: url("../fonts/daxlinemedium.eot");
        src: url("../fonts/daxlinemedium.eot?#iefix") format("embedded-opentype"), url("../fonts/daxlinemedium.woff") format("woff"), url("../fonts/daxlinemedium.ttf") format("truetype");
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'DaxlinePro';
        font-display: auto;
        src: url("../fonts/daxlinebold.otf");
        src: url("../fonts/daxlinebold.otf?#iefix") format("embedded-opentype"), url("../fonts/daxlinebold.woff") format("woff"), url("../fonts/daxlinebold.ttf") format("truetype");
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'DaxlinePro';
        font-display: auto;
        src: url("../fonts/daxlineblack.otf");
        src: url("../fonts/daxlineblack.otf?#iefix") format("embedded-opentype"), url("../fonts/daxlineblack.woff") format("woff"), url("../fonts/daxlineblack.ttf") format("truetype");
        font-weight: 900;
        font-style: normal;
    }

    :root {
        --Hpadding: 8%;
        --Vpadding: 45px;
        --headerHeight: 80px;
        --maxboxW: 400px;
        --font: 'DaxlinePro', sans-serif;
    }

    .burger {
        display: none;
    }

    .banner.desktop {
        display: flex;
    }

    .banner.mobile {
        display: none;
    }

    .offer-wrapper {
        position: absolute;
        top: 60px;
        right: var(--Hpadding);
        margin: 0;
        width: max-content;
    }

    .toptip span:nth-child(2){
        font-size: 15px;
    }

    .toptip {
        left: 21.5%;
        border-radius: 30px;
        top: -200px;
        width: 150px;
        height: 50px;
        min-width: initial;
        position: fixed;
        margin: 0;
        transition: .3s;
    }

    .stick .toptip {
        top: 15px;
    }

    nav {
        height: var(--headerHeight);
        top: 0;
        display: flex;
    }

    nav ul {
        justify-content: space-between;
        align-items: center;
    }

    nav li a {
        font-size: 16px;
        justify-content: center;
    }

    nav li {
        border: none;
        width: auto;
        padding: 0 8px;
    }

    nav li:nth-child(1){
        margin-right: 18%;
        padding: 0 20px 0 0;
    }

    nav li:nth-child(1) a{
        font-size: 2vw;
        padding: 0 5px;
        font-weight: 700;
    }

    nav li a:hover {
        text-shadow: 1px 0 0 black;
    }

    nav li:nth-child(1) a p{
        display: none;
    }

    nav li:nth-child(1) a img{
        max-width: 200px;
        display: block;
    }

    h1, h2, p.h2 {
        font-size: 32px;
        line-height: 1;
    }

    .slogan {
        align-items: center;
        margin-left: var(--Hpadding);
        width: auto;
    }

    .header-image-container {
        height: 450px;
    }

    .header-image-container p{
        margin: 0;
        width: auto;
    }

    .smile-container{
       justify-content: flex-start;
    }

    .smile-container img{
        width: auto;
    }

    .next-jackpot-wrapper {
        height: 280px;
        padding: 30px;
        width: var(--maxboxW);
    }

    .next-jackpot-wrapper.with-offer {
        height: 180px;
    }

    .offer {
        width: var(--maxboxW);
        padding: 20px;
    }

    .offer p:nth-child(3) {
        margin: 0 auto 15px;
    }

    .next-jackpot-wrapper p.eurojackpot, .next-jackpot-wrapper h1.eurojackpot{
        top: -15px;
        right: 23px;
        z-index: 1;
    }

    .next-jackpot-wrapper .next-right {
        width: auto;
    }

    .next-jackpot-wrapper .next-left {
        width: 60%;
    }

    .next-jackpot-wrapper .next-right img {
        transform: none;
    }

    .next-jackpot-wrapper .cta-1 {
        width: inherit;
        margin: 25px auto 0;
    }

    .quicktip p.h2{
        font-size: 20px;
    }

    .jackfri {
        font-size: 16px;
    }

    .jackcurr, .jackpot-sign {
        font-size: 38px;
    }

    :lang(de-DE) .jackcurr, :lang(de-DE) .jackpot-sign,
    :lang(de) .jackcurr, :lang(de) .jackpot-sign{
        font-size: 38px;
    }

    .jackcurr{
        padding: 20px 0 5px;
        line-height: 35px;
    }

    .next-jackpot-wrapper span.spezial-jackpot {
        top: -30px;
        height: 30px;
        border-radius: 0 8px 0 0;
    }

    .next-jackpot-wrapper.with-promo {
        padding-top: 30px;
    }

    [data-nav="1"] .bottombar li:nth-child(1) a,  [data-nav="2"] .bottombar li:nth-child(2) a, [data-nav="3"] .bottombar li:nth-child(3) a,
    [data-nav="4"] .bottombar li:nth-child(4) a,  [data-nav="5"] .bottombar li:nth-child(5) a, [data-nav="6"] .bottombar li:nth-child(6) a{
        font-weight: bold;
    }

    :lang(lv-LV) [data-nav="6"] .bottombar li:nth-child(5) a, :lang(nl) [data-nav="6"] .bottombar li:nth-child(5) a,
    :lang(nn-NO) [data-nav="6"] .bottombar li:nth-child(5) a, :lang(ru-RU) [data-nav="6"] .bottombar li:nth-child(5) a,
    :lang(pt) [data-nav="6"] .bottombar li:nth-child(5) a, :lang(is-IS) [data-nav="6"] .bottombar li:nth-child(5) a,
    :lang(et-EE) [data-nav="6"] .bottombar li:nth-child(5) a, :lang(fi-FI) [data-nav="6"] .bottombar li:nth-child(5) a,
    :lang(hr) [data-nav="6"] .bottombar li:nth-child(5) a, :lang(hu-HU) [data-nav="6"] .bottombar li:nth-child(5) a,
    :lang(lt-LT) [data-nav="6"] .bottombar li:nth-child(5) a {
        font-weight: bold;
    }

    :lang(it-IT) [data-nav="superena"] .bottombar li:nth-child(3) a,  :lang(it-IT) [data-nav="3"] .bottombar li:nth-child(4) a,
    :lang(it-IT) [data-nav="4"] .bottombar li:nth-child(5) a,  :lang(it-IT) [data-nav="5"] .bottombar li:nth-child(6) a,
    :lang(it-IT) [data-nav="6"] .bottombar li:nth-child(7) a{
        font-weight: bold;
    }

    :lang(it-IT) [data-nav="3"] .bottombar li:nth-child(3) a,  :lang(it-IT) [data-nav="4"] .bottombar li:nth-child(4) a,
    :lang(it-IT) [data-nav="5"] .bottombar li:nth-child(5) a, :lang(it-IT) [data-nav="6"] .bottombar li:nth-child(6) a{
        font-weight: 300;
    }

    .languages {
        width: 7%;
        display: block;
        top: 24px;
        right: 8px;
    }

    .languages p {
        font-size: 10px;
        text-overflow: clip;
    }

    .languages img{
        max-width: 15px;
        margin-left: 2px;
        height: 12px;
    }
    .current-lang-container{
        width: 100%;
    }

    .current-lang, .other-lang a {
        margin: 0 auto 3px;
        padding: 1px 3px;
        width: 100%;
        max-width: 80px;
        cursor: pointer;
    }

    .lastresults{
        padding: var(--padding);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }

    .lastresults h2.title, .lastresults h1{
        width: 100%;
        padding: 0;
    }

    .last-results {
        margin-top: 2px;
    }

    .lastresults h2.solo {
        padding: 0;
    }

    .lastresults h2.time {
        padding: 10px 0;
    }

    .table2plus1.prizepool {
        width: 50%;
        min-height: 187px;
    }

    .table2plus1.prizepool table td:nth-child(3) {
        width: 60%;
    }

    .date-wrapper {
        position: absolute;
        bottom: var(--Vpadding);
        padding: 0;
        width: 300px;
    }

    .date-wrapper .date-slide {
        margin: 0;
    }

    .results-container {
        width: 50%;
    }

    .results-container div.results-container-div {
        width: 100%;
    }

    .date-slide{
        width: 100%;
    }

    .text-box h2 {
        margin-bottom: 10px;
    }

    .text-box h2.inner {
        margin-top: 32px;
    }

    ul.results li {
        width: 45px;
        height: 45px;
        font-size: 21px;
    }

    table.results-table {
        font-size: 16px;
    }

    table.results-table tr td .td-bottom {
        font-size: 15px;
        padding-top: 5px;
    }

    table.results-table tr td:nth-child(2) div {
        font-weight: bold;
        padding: 10px 10px 10px 60px;
    }

    .stats-teaser .slide {
        width: 46%;
    }

    .stats-teaser .slider, .news-teaser .slider {
        justify-content: center;
        flex-wrap: wrap;
    }

    #stats-teaser.stats-teaser .stats-link, .news-teaser .stats-link {
        margin: 0 70px 0 0;
    }

    .news-teaser img {
        margin: -45px auto 10px;
    }

    .video-container {
        width: 100%;
        display: block;
        background: #243020;
    }

    .ej-video {
        width: 100%;
        margin: auto;
        max-width: initial;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    .ej-video h2 {
        width: 40%;
    }

    .videowrapper{
        width: 55%;
        max-width: var(--maxboxW);
    }

    .right {
        width: var(--maxboxW);
    }

    .quicktip .cta-2, .quicktip .cta-1 {
        margin: 15px auto;
    }

    .betslip-checkout{
        padding: 0 0 0 var(--Hpadding);
    }

    footer .footer-logos ul{
        width: 70%;
        margin: auto;
    }

    .infowrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .infowrapper div {
        width: 30%;
    }

    .quicktip input{
        padding-left: 12px;
    }

    .quicktip .buttons-wrapper .cta-1{
        box-shadow: var(--shadow);
    }

    .date-slide select {
        width: 100%;
    }

    .logo-wrapper img {
        width: 6%;
    }

    .results-article {
        width: 85%;
        margin: auto;
    }

    ul.ul_news.main li {
        width: 45%;
    }

    ul.ul_news.solonew {
        justify-content: center;
    }

    ul.ul_news.solonew li {
        width: 75%;
        background: none;
    }

    .ul_news.solonew img {
        width: 100%;
    }

    .back {
        border: none;
        border-radius: 4px;
    }

    article {
        width: 100%;
        margin: auto;
    }

    .new-wrapper{
        border-radius: 6px;
        overflow: hidden;
        padding: 12px;
        width: 33%;
    }

    .new-wrapper:hover{
        box-shadow: var(--shadow);
        transition: 0.2s;
    }

    #compare table {
        width: 50%;
        border-radius: 4px;
        margin: 0;
        overflow: hidden;
    }

    ul.faqs {
        text-align: left;
        padding: 0 50px;
    }

    .languages .title {
        font-size: 18px;
    }

    #closeNav {
        display: none;
    }

    footer img.smile {
        width: 15%;
    }

    footer {
        padding: 30px 0;
    }

    .logo-wrapper div, .logo-wrapper div {
        font-size: 26px;
    }

    .newsblock {
        width: 45%;
    }

    #singleNew .news-wrapper img {
        width: 40%;
    }

    #singleNew .back:hover, #singleNew .back:hover:before {
        color: var(--ejyellow);
        transition: 0.2s;
    }

    .news-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #news .newsblock:hover {
        text-decoration: none;
        background: var(--ejyellow);
        transition: 0.8s;
    }

    footer .footer-logos .gambleaware-a {
        width: 10%;
    }

    footer .footer-logos img.gambleaware {
        width: 100%;
    }

    .faqlink:hover {
        background: var(--grey);
        color: var(--black);
        transition: 0.4s;
    }

    .adbox p {
        font-size: 15px;
        padding: 3px 20px;
    }

    .adbox p:nth-child(3) {
        font-family: var(--font);
        text-align: left;
        margin: 5px auto 0;
        padding: 0 20px;
    }

    .adbox img {
        display: none;
    }

    .statblocks, .hotcold {
        width: 100%;
    }

    .compared .box-title {
        font-size: 32px;
    }

    .compared .jackpot {
        margin: 15px 0 0;
    }

    .compared .millions {
        font-size: 32px;
    }

    .results-table-wrapper {
        margin: 18px 0 0;
        width: 45%;
        padding: 20px;
        max-width: var(--maxboxW);
        background: #fff;
    }

    .stats-teaser li {
        width: 12%;
        min-width: 60px
    }

    .results-table-wrapper h3, .results-table-wrapper h2{
        font-size: 20px;
    }

    table.results-table{
        margin: 0;
    }

    a.archivlink{
        padding-top: 20px;
    }

    p.note {
        font-size: 11px;
    }

    .news-teaser .slide {
        width: 32%;
        margin: 10px 5px;
    }

    #stats-teaser.stats-teaser .stats-link, .news-teaser .stats-link {
        margin: 10px 70px 0 0;
    }

    table.results-table, table.results-table tr td:nth-child(2) div, .checkerbg p, summary {
        font-size: 16px;
    }

    ul.numbers {
        margin-right: 50px;
    }

    .numbers li {
        height: 48px;
        width: 48px;
        font-size: 18px;
    }

    .footnote {
        font-size: 16px;
    }

    #singleNew .news-wrapper img {
        margin: 0 auto;
    }

    .back {
        background: none;
        text-align: center;
        margin: 50px auto 20px;
    }

    #navLang {
        width: 100%;
    }

    #checker .text-box .footnote {
        margin: 0 auto;
        padding-top: 0
    }

    .spezial {
        right: 12px;
        left: initial;
        top: -20px;
        font-size: 16px;
        padding: 5px 15px;
        width: inherit;
        transition: 0.3s;
    }

    .spezial.stick {
        position: fixed;
        top: 115px;
        right: 0;
        z-index: 1000000;
        width: 18%;
    }

    .toptip:hover, .quicktip .buttons-wrapper .cta-1:hover, .quicktip .buttons-wrapper .cta-2:hover, .stats-teaser .cta-1:hover, .newsletter .submit:hover, .compared .cta-1:hover{
        background: var(--green);
    }

    .checker .cta-2:hover, .news-teaser .cta-2:hover, footer .cta-2:hover{
        color: #012404;
    }

    #singleNew .breadcrumbs{
        padding: 15px var(--Hpadding);
    }
    .newsblock .image-container {
        padding: 0 var(--Hpadding);
        height: 300px;
        overflow: hidden;
    }

    .lastresults h1.solo{
        padding: 0;
    }

    .breadcrumbs{
        padding: 15px 0;
    }

    .past-results .right{
      max-width: var(--maxboxW);
    }

    .checkerresults {
        display: flex;
        flex-wrap: wrap;
    }

    .awaiting-results {
        min-height: 160px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    :root {
        --Hpadding: 10%;
    }

    .toptip {
        left: 23.5%;
        width: 160px;
    }

    nav li a {
        font-size: 17px;
    }

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

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

@media (min-width: 1400px) {
    :root {
        --Hpadding: 14%;
    }

    .header-image-container {
        height: 480px;
        background-position-y: -160px;
    }

    .toptip {
        left: 27%;
        width: 170px;
    }

    nav li a {
        font-size: 18px;
    }
}
