:root {
    --background: linear-gradient(90deg, #0b9c63, #007849);
    --font: sans-serif;
    --black: #2f332a;
    --grey: #f2f4f2;
    --bannertextcolor: #fff;
    --accentBG: linear-gradient(to left, #ffcc00 0%, #ffe100 100%);
    --accent: #ffd502;
    --footerBackground: #323e38;
    --footerTextColor: #d6d6d6;
    --offerAltColor: #fece00;
    --shadow: 0 1px 3px rgb(169, 169, 169);
    --box-radius: 4px;
    --maxW: 300px;
    --maincolor: #007849;
    --maxnumber: 60;
    --numbersperline: 6;
    --starsperline: 0;
    --maxstar: 0;
    --cta-box-radius: 10px;
    --llbackground: linear-gradient(90deg, #a5cd28, #69a507);
    --llgreen: #a5cd28;
    --Hpadding: 4vw;
    --Vpadding: 6vw;
    --padding: var(--Vpadding) var(--Hpadding);
    --btheight: 11vw;
    --headerHeight: 13vw;
    --font8: 3vw;
    --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;
    --font26: 6.3vw;
    --font28: 7vw;
    --font30: 7.5vw;
    --font32: 8vw;
    --font35: 10vw;
    --font38: 12vw;
    --vw0-5: .5vw;
    --vw1: 1vw;
    --vw1-5: 1.5vw;
    --vw2: 2vw;
    --vw3: 3vw;
    --vw4: 4vw;
    --vw5: 5vw;
    --vw6: 6vw;
    --vw7: 7vw;
    --vw8: 8vw;
    --vw9: 9vw
}

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: var(--black);
    text-align: left
}

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

*:focus {
    outline: none
}

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

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

img {
    width: 100%;
    height: auto
}

ul {
    list-style: none
}

ul.bullets {
    list-style: inside
}

main {
    margin-top: var(--headerHeight)
}

header {
    background: var(--background);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--Hpadding);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    height: var(--headerHeight)
}

.homelink {
    display: none
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--vw1);
    transition: .1s;
    justify-content: flex-end;
    width: auto;
    position: fixed;
    right: var(--Hpadding);
    top: -100%
}

.stick .logo-wrapper {
    top: unset
}

.logo-wrapper img {
    width: 10vw;
    height: auto;
    max-width: 90px;
    transition: .1s
}

.floated-cta.cta-1 {
    position: fixed;
    width: 60vw;
    top: -15vw;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 0 0 25px 25px;
    height: 14vw;
    transition: .1s;
    z-index: 10000000;
    gap: var(--vw0-5)
}

.floated-cta.cta-1 span {
    font-size: var(--font12)
}

.stick .floated-cta.cta-1 {
    top: 0
}

.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: var(--bannertextcolor)
}

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

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

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

nav {
    position: fixed;
    z-index: 100000;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-around;
    font-size: var(--font15);
    padding: 0 var(--Hpadding);
    height: 100%;
    top: var(--headerHeight);
    left: -100%;
    background: #fff;
    transition: .3s
}

.opened nav {
    left: 0
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0
}

nav li {
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px dotted var(--maincolor);
    padding: var(--vw4) 0
}

nav li a {
    font-size: inherit;
    position: static;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    background: none;
    font-weight: 400;
    color: var(--black)
}

.overlay, .game-overlay {
    background: #000000a8;
    position: fixed;
    display: block;
    top: var(--headerHeight);
    left: 0;
    height: 100%;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
    cursor: pointer
}

.opened .overlay, .game-overlay.finished {
    opacity: 1;
    visibility: visible
}

nav details {
    cursor: pointer
}

details[open] summary {
    font-weight: 600
}

nav details[open] ::marker {
    color: var(--maincolor);
    background: var(--maincolor)
}

.submenu-wrapper a {
    padding: 3.5vw;
    font-weight: 500;
    border-bottom: 1px dotted var(--maincolor)
}

.submenu-wrapper a:last-child {
    border: none
}

.submenu-wrapper a:first-child {
    margin-top: var(--vw5)
}

.cta-1, .cta-2 {
    background: var(--llbackground);
    border-radius: var(--cta-box-radius);
    text-decoration: none;
    width: 90%;
    height: var(--btheight);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--maxW);
    font-weight: 900;
    color: var(--grey);
    font-size: var(--font15);
    text-transform: uppercase
}

.cta-2 {
    background: transparent;
    color: var(--black);
    border: 1px solid
}

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

.cta-1 span {
    font-weight: 900;
    font-size: var(--font14);
    width: auto;
    padding: 0;
    text-align: left
}

.lottery-ball-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--vw4) auto;
    gap: var(--vw2)
}

.lottery-ball {
    width: var(--vw9);
    background: #fff;
    border-radius: 100%;
    height: var(--vw9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: var(--font14);
    color: var(--black);
    opacity: 1;
    border: 1px solid var(--maincolor)
}

.stars .lottery-ball {
    background: var(--maincolor);
    color: var(--bannertextcolor)
}

footer {
    background: var(--footerBackground);
    color: var(--footerTextColor)
}

footer p {
    color: var(--footerTextColor);
    text-align: center;
    font-size: var(--font12)
}

footer .left {
    width: var(--maxW)
}

footer .left .cta-2 {
    color: var(--grey);
    margin: 0;
    font-size: var(--font14);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    max-width: var(--maxW);
    border: 1px solid var(--grey);
    height: var(--btheight);
    border-radius: 25px
}

footer img.logo {
    width: 30%;
    margin: 0 auto;
    display: block;
    padding: var(--vw4) 0;
    max-width: 115px
}

footer .llsign_logo {
    display: flex;
    justify-content: center;
    align-items: center
}

footer .llsign_logo p {
    padding: 0 var(--vw1-5) 0 0;
    width: auto
}

footer .llsign_logo img {
    width: 22%;
    max-width: 60px
}

footer .compliance {
    margin: var(--vw6) auto;
    justify-content: center;
    align-items: center
}

footer .compliance img {
    width: auto;
    height: 11vw;
    max-height: 60px
}

footer p.disclaimer {
    text-align: center;
    font-size: var(--font11);
    margin: var(--vw3) auto
}

.cookie-banner {
    position: fixed;
    bottom: 60px;
    left: 5%;
    right: 5%;
    width: 90%;
    padding: var(--vw4);
    display: flex;
    align-items: center;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 1px 0 13px 5px #0000004d;
    justify-content: center;
    z-index: 999;
    flex-wrap: wrap;
    gap: var(--vw4);
    text-align: center
}

.news-header-image {
    display: none
}

.breadcrumb {
    margin: var(--vw2) 0;
    padding: 0 var(--Hpadding);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%
}

.breadcrumb a {
    font-size: var(--font10);
    text-decoration: underline;
    width: auto
}

.breadcrumb span {
    padding: 0 var(--vw1-5);
    color: #7b7b7b;
    width: auto
}

.breadcrumb p {
    font-size: var(--font10);
    color: #6a6b69;
    width: auto
}

.disclaimer {
    font-style: italic;
    margin-top: 8px;
    font-size: var(--font12)
}

.disclaimer:before {
    content: "*";
    padding-right: 4px;
}

ol {
    font-size: var(--font15);
    list-style-position: inside;
}

ol li {
    line-height: 150%;
}

@media (min-width: 660px) {
    :root {
        --Hpadding: 4vw;
        --Vpadding: 4vw;
        --padding: var(--Vpadding) var(--Hpadding);
        --btheight: 45px;
        --font8: 8px;
        --font9: 9px;
        --font10: 10px;
        --font11: 11px;
        --font12: 12px;
        --font13: 13px;
        --font14: 14px;
        --font15: 15px;
        --font16: 16px;
        --font18: 18px;
        --font20: 20px;
        --font22: 22px;
        --font25: 25px;
        --font26: 26px;
        --font28: 28px;
        --font30: 30px;
        --font35: 35px;
        --font38: 38px;
        --vw0-5: 3px;
        --vw1: 5px;
        --vw1-5: 8px;
        --vw2: 12px;
        --vw3: 15px;
        --vw4: 20px;
        --vw5: 25px;
        --vw6: 30px;
        --vw7: 35px;
        --vw8: 40px;
        --vw9: 45px;
        --headerHeight: 60px
    }

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

    .burger div {
        height: 3px
    }

    .logo-wrapper img, .stick .logo-wrapper img {
        width: 100px
    }

    .opened .burger div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }


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

    nav li {
        border: none
    }

    nav summary {
        font-size: 14px
    }

    .floated-cta.cta-1 {
        width: 250px;
        top: -100px;
        height: 65px;
        gap: 5px
    }

    .floated-cta.cta-1 span {
        font-size: 15px
    }

    .stick .logo-wrapper {
        flex-direction: row
    }

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

    .lottery-ball-container {
        gap: 5px;
        justify-content: flex-start
    }

    .lottery-ball {
        width: 35px;
        height: 35px
    }

    footer {
        justify-content: space-between;
        align-items: flex-start
    }

    footer .left {
        justify-content: flex-start
    }

    footer .left .cta-2 {
        font-size: 15px
    }

    footer .left, footer .right {
        width: 48%
    }

    footer img.logo {
        padding: 0 0 10px
    }

    footer p {
        font-size: 13px
    }

    .graph-wrapper {
        padding: var(--padding)
    }

    .breadcrumb a, .breadcrumb p, .breadcrumb span {
        font-size: 12px
    }


}

@media (min-width: 1000px) {
    :root {
        --Hpadding: 9%;
        --Vpadding: 45px;
        --padding: var(--Vpadding) var(--Hpadding)
    }

    .burger {
        display: none
    }

    .logo-wrapper {
        position: static
    }

    .logo-wrapper span div {
        font-weight: 100;
        font-size: 10px
    }

    .logo-wrapper img {
        position: relative;
        transition: .2s
    }

    .stick .logo-wrapper img {
        transform: translate(-60px) rotate(-360deg)
    }

    .homelink {
        display: block;
        color: #fff;
        width: auto;
        font-size: 16px;
        padding: 0 0 0 5px
    }

    nav {
        position: static;
        padding: 0;
        background: none;
        justify-content: flex-end;
        font-size: 14px;
        align-items: center;
        width: 75%
    }

    nav ul {
        justify-content: flex-end
    }

    nav li {
        padding: 0 0 0 15px;
        width: auto
    }

    nav li a {
        text-align: right;
        color: var(--bannertextcolor)
    }

    nav li a:hover {
        border-bottom: 2px solid
    }

    nav li.active a {
        border-bottom: 2px solid
    }

    nav li:first-of-type {
        display: none
    }

    .submenu-wrapper {
        position: fixed;
        top: var(--headerHeight);
        left: 0;
        display: flex;
        flex-wrap: wrap;
        background: var(--maincolor);
        justify-content: flex-end;
        align-items: center;
        border-bottom: 1px solid;
        border-top: 1px solid;
        width: 100%;
        padding: 0 var(--Hpadding);
        z-index: 1000;
        height: var(--headerHeight);
        gap: 15px
    }

    .submenu-wrapper a:first-child {
        margin: 0
    }

    .submenu-wrapper a {
        width: auto;
        padding: 0;
        border: none;
        font-size: 13px
    }

    nav summary, .submenu-wrapper a {
        font-size: 16px
    }

    .floated-cta.cta-1 {
        width: 190px;
        height: 40px;
        border-radius: 25px;
        left: var(--Hpadding);
        margin: 0
    }

    .complex .floated-cta.cta-1 {
        left: calc(2.5 * var(--Hpadding))
    }

    .stick .floated-cta.cta-1 {
        top: 10px
    }

    .cta-2:hover {
        background: var(--grey)
    }

    .cta-1 span {
        font-size: 15px
    }

    .cta-1:hover {
        background: var(--llgreen)
    }

    .cookie-banner div {
        width: 80%;
        text-align: left
    }

    .cookie-banner .cookie-close {
        width: 15%
    }

    .news-header-image {
        display: block;
        overflow: hidden;
        height: 30vw;
        padding: 0 var(--Hpadding)
    }

    .news-header-image img {
        transform: translateY(-10vw)
    }
}

@media (min-width: 1200px) {
    :root {
        --Hpadding: 12%;
        --Vpadding: 45px;
        --headerHeight: 70px
    }

    .floated-cta.cta-1 {
        left: 25%
    }

    .stick .floated-cta.cta-1 {
        top: 15px
    }

    .stick .logo-wrapper img {
        transform: none
    }

    .floated-cta.cta-1 {
        width: 175px
    }
}

@media (min-width: 1400px) {
    :root {
        --Hpadding: calc((100% - 1200px) / 2);
        --Vpadding: 45px;
        --headerHeight: 70px
    }

    .floated-cta.cta-1 {
        left: 28%
    }

    nav {
        font-size: 15px
    }
}

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

.maincolor {
    background: var(--maincolor)
}

.background {
    background: var(--background)
}

.grey-background {
    background: var(--grey)
}

.accent-background {
    background: var(--accentBG)
}

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

.mbcenter, .center {
    text-align: center;
    justify-content: center
}

.gapper1 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw1)
}

.gapper2 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw2)
}

.gapper3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw3)
}

.gapper4 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw4)
}

.gapper5 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw5)
}

.gapper6 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw6)
}

.auto {
    width: auto
}

@media (min-width: 660px) {
    .mbcenter {
        text-align: left;
        justify-content: space-between
    }
}

h1 {
    font-size: var(--font22);
    text-transform: uppercase
}

h2 {
    font-size: var(--font20);
    text-transform: uppercase
}

h3 {
    font-size: var(--font18)
}

p {
    font-size: var(--font15)
}

a {
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    color: var(--maincolor)
}

strong {
    font-weight: 700
}

p a {
    text-decoration: underline
}

p a:hover {
    text-decoration: none
}

.banner-wrapper {
    position: relative
}

.header-image-container {
    display: none
}

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

.next-jackpot-wrapper .next-left {
    width: 67%
}

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

.stage-fallback {
    font-size: var(--font30);
    line-height: 1.6
}

.jackcurr {
    font-size: var(--font38);
    font-weight: 900;
    line-height: .9;
    padding: var(--vw2) 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--vw1)
}

.jackcurr span {
    line-height: 0;
    font-size: var(--font16);
    width: auto
}

.jackpot-sign {
    color: #fff;
    font-size: var(--font28);
    font-weight: 400;
    line-height: 1
}

.next-jackpot-wrapper .next-right {
    width: 27%;
    display: flex
}

.next-jackpot-wrapper .next-right img {
    padding: var(--vw1) 0 0 0;
    max-width: 130px
}

.offer {
    padding: var(--padding);
    background: #031e14;
    color: var(--offerAltColor);
    text-align: center
}

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

.offer p:nth-child(2) {
    font-weight: 700;
    font-size: var(--font22)
}

.offer p:nth-child(3) {
    margin: var(--vw2) 0 var(--vw3);
    font-weight: 300;
    font-size: var(--font16);
    color: var(--grey)
}

.offer p:nth-child(3) span {
    font-weight: 600
}

.offer p:nth-child(3) span, .offer p:nth-child(3) del {
    color: var(--offerAltColor)
}

.offer .cta-1 {
    width: 75vw;
    margin: auto;
    max-width: 300px
}

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

@media (min-width: 660px) {
    .jackfri {
        font-size: 16px
    }

    .offer p:nth-child(1) {
        font-size: 14px
    }

    .offer p:nth-child(2) {
        font-size: 20px
    }

    .offer p:nth-child(3) {
        margin: 6px auto 15px;
        font-size: 24px
    }

    .offer .cta-1 span {
        font-size: 16px
    }

    .jackcurr span {
        font-size: 25px
    }
}

@media (min-width: 1000px) {
    .header-image-container {
        display: flex;
        position: relative;
        align-items: center;
        background: none;
        width: auto;
        padding: 0;
        height: auto;
        max-width: 45%
    }

    .slogan {
        text-transform: uppercase;
        mix-blend-mode: luminosity
    }

    .header-image-container p {
        text-align: center;
        font-size: 35px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        text-shadow: 1px 1px 15px #000000fa
    }

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

    .smile-container img {
        width: 345px;
        max-width: 380px;
        filter: brightness(.1) invert(1)
    }

    .banner-wrapper {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        /*background-image: url(/assets/content-img/megadasena2024.jpg);*/
        background-image: url(/assets/content-img/mdv2024.jpg);
        background-size: cover;
        background-position: 0 center;
        padding: var(--padding)
    }

    ol.highlight {
        background: var(--maincolor);
        color: white;
        padding: 20px;
    }

    .offer-wrapper {
        position: static;
        right: var(--Hpadding);
        margin: 0;
        width: 48%
    }

    .next-jackpot-wrapper {
        padding: 22px
    }

    .jackfri {
        font-size: 14px
    }

    .jackcurr {
        font-size: 35px
    }

    .jackcurr span {
        font-size: 32px
    }

    .jackpot-sign {
        font-size: 30px
    }

    .next-jackpot-wrapper .next-right, .next-jackpot-wrapper .next-right img {
        width: 110px
    }

    .offer {
        padding: 20px
    }
}

@media (min-width: 1200px) {
    .jackcurr {
        font-size: 50px
    }

    .jackpot-sign {
        font-size: 36px
    }
}

@media (min-width: 1400px) {
    .header-image-container {
        width: 54%;
        margin: 0;
        justify-content: flex-start
    }

    .slogan {
        width: auto
    }

    .offer-wrapper, .results-right {
        width: 42%
    }
}

.results {
    position: relative
}

.results h2, .results h1 {
    color: var(--maincolor);
    text-transform: uppercase
}

.results h2 span, .results h1 span {
    display: block;
    font-size: var(--font15);
    text-transform: none
}

.results-left p {
    font-size: var(--font12);
    font-weight: 400
}

.no-odds {
    border: 1px dotted var(--maincolor);
    padding: var(--vw4);
    border-radius: 6px
}

.pending span {
    background: #fff;
    width: var(--vw1-5);
    height: var(--vw1-5);
    border-radius: 100%
}

.pending {
    width: 10vw;
    height: 10vw;
    background: var(--maincolor);
    border-radius: 100%;
    margin: 0 auto var(--vw5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--vw1);
    max-width: 70px;
    max-height: 70px
}

@media (min-width: 660px) {
    .results {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        min-height: 250px
    }

    .results-left {
        width: 46%
    }

    .results-right {
        width: 50%
    }

    .results p.cidade {
        font-size: 14px
    }
}

@media (min-width: 1400px) {
    .results-left {
        width: 48%
    }

    .results-right {
        width: 42%
    }
}

.video-container {
    background: var(--accentBG);
    padding: var(--padding);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vw5)
}

.text-wrapper .video-container {
    padding: 0;
    background: none
}

.video-container .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vw3)
}

.video-container span.video-desc {
    text-align: center;
    width: 90%;
    display: block;
    margin: 0 auto 50px;
    font-size: 14px;
    font-weight: 300
}

.video-container h2 {
    color: var(--black);
    text-align: center
}

.video-container p {
    font-size: var(--font12);
    text-align: center
}

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

#news-template .videowrapper {
    margin: 20px 0
}

iframe {
    width: 100%;
    height: 50vw;
    border: none;
    border-radius: 4px
}

.youtube {
    background-color: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer
}

.youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: .7
}

.youtube .vidplay-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px #0009;
    z-index: 1;
    opacity: .8;
    border-radius: 6px
}

.youtube .vidplay-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff
}

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

@media (min-width: 660px) {
    .video-container p {
        font-size: 14px
    }
}

@media (min-width: 1000px) {
    .video-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start
    }

    .video-container .left {
        width: 45%;
        justify-content: flex-start
    }

    .video-container p {
        text-align: left
    }

    .video-container .left h2 {
        font-size: 24px;
        width: 80%;
        text-align: left;
        margin: 0
    }

    .video-container .right {
        width: 45%
    }

    iframe {
        width: 100%;
        height: 19vw
    }

    .text-wrapper .video-container .left {
        width: 100%;
        justify-content: center
    }

    .text-wrapper .video-container .left h2 {
        text-align: center
    }

    .text-wrapper .video-container .right {
        width: 600px;
        margin: auto
    }

    .text-wrapper iframe {
        width: 600px;
        height: 338px
    }
}

@media (min-width: 1400px) {
    iframe {
        height: 17vw
    }

    .text-wrapper iframe {
        height: 338px
    }
}

.text-wrapper {
    padding: var(--padding);
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw4)
}

.text-wrapper h1, .text-wrapper h2, .text-wrapper h3 {
    width: 90%
}

.text-wrapper p {
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.3
}

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

.superwrapper section {
    padding: var(--vw4) 0
}

.superwrapper section.text-wrapper {
    padding: var(--padding);
    color: var(--black)
}

.superwrapper section.comp-wrapper {
    padding: var(--vw4)
}

.highlighted, .highlighted-grey {
    margin: var(--vw3) auto;
    padding: var(--vw3);
    background: #00784942;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw3)
}

.highlighted-grey {
    background: var(--grey)
}

.bullet-list {
    background: var(--grey);
    padding: var(--vw3);
    border-radius: 4px
}

.bullet-list li {
    padding: var(--vw2) 0;
    font-size: var(--font12);
    list-style: disc;
    margin-left: var(--vw5);
    line-height: 150%;
    width: auto
}

.listed-blocks.text-wrapper {
    background: var(--grey);
    border-color: var(--maincolor)
}

.listed-blocks .inlisted {
    padding-left: var(--vw5);
    border-left: 3px solid;
    border-color: inherit
}

.backgroundgrey {
    background: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
}

@media (min-width: 660px) {
    .backgroundgrey {
        background: none;
    }

    .superwrapper {
        justify-content: space-between;
        align-items: flex-start;
        padding: var(--padding)
    }

    .superwrapper section.text-wrapper {
        width: 48%;
        padding: 0
    }

    .superwrapper section:not(.text-wrapper) {
        width: 48%;
        padding: 20px;
        box-shadow: 4px 5px 20px #00000042;
        border-radius: 6px
    }

    .superwrapper:nth-child(even) {
        background: var(--grey)
    }

    .bullet-list li {
        font-size: 14px
    }
}

@media (min-width: 1400px) {
    .superwrapper .text-wrapper, .superwrapper section {
        width: 42%
    }
}

table {
    font-size: var(--font10);
    border-collapse: collapse
}

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

.td-top {
    font-weight: 500
}

.td-bottom {
    font-size: var(--font9);
    font-weight: 100;
    padding-top: .5vw
}

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

.text-wrapper .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 thead tr {
    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: 14vw
}

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

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

.table2plus1 td:nth-child(1), .table2plus1 th:nth-child(1) {
    position: absolute;
    top: var(--vw1-5);
    left: var(--vw2)
}

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

.table2plus1 td:nth-child(3), .table2plus1 th:nth-child(3) {
    position: absolute;
    top: var(--vw2);
    right: var(--vw2);
    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 12vw;
    background: var(--grey);
    border-radius: 8px;
    text-align: right;
    font-size: var(--font12);
    font-weight: 600
}

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

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

.responsive-table table {
    width: 100%
}

.table2 thead tr:nth-child(1) {
    background: none;
    border: none;
    color: var(--black);
    font-size: var(--font20)
}

.table2 thead tr:nth-child(1) th {
    font-size: var(--font14);
    color: var(--bannertextcolor)
}

.table2 thead tr:nth-child(1) {
    background: var(--maincolor)
}


table tr > [data-label]::before {
    content: attr(data-label);
    padding-right: var(--Hpadding);
    font-weight: 700;
    width: 55%;
}

.responsive-table table tbody tr:first-child {
    display: none;
}

.responsive-table thead tr {
    background: var(--maincolor);
}

.responsive-table tr {
    background: #fff;
    display: block;
    margin: 0 0 var(--vw3);
    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 .mobileonly {
    font-weight: 300;
    width: 35%;
    padding: 0 10px 0 0
}

.responsive-table tr td .res-dataset {
    width: 60%
}


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

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

.no-heading tbody tr:nth-child(1) td {
    font-weight: 500 !important
}

table caption {
    padding: 0 0 var(--vw4);
    font-size: var(--font18);
    font-weight: 600
}

.history-container table a span {
    display: block;
    font-weight: 400
}

.history-container.table3 td:nth-child(1), .history-container.table3 th:nth-child(1) {
    width: 27%;
    padding: 2vw
}

.history-container.table3 td:nth-child(2), .history-container.table3 th:nth-child(2) {
    width: 53%;
    padding: 2vw 1vw
}

.history-container.table3 td:nth-child(3), .history-container.table3 th:nth-child(3) {
    width: 20%;
    padding: 2vw
}

.history-container.table3 td .flex .lottery-ball {
    width: 6vw;
    height: 6vw;
    font-size: var(--font9)
}

.history-container a {
    color: var(--black)
}

@media (min-width: 660px) {
    .table-container {
        padding: 25px var(--Hpadding)
    }

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

    table {
        font-size: var(--font14);
        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 {
        padding: 10px 10px 10px 30%;
        font-size: 14px
    }

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

    .responsive-table {
        margin: 0
    }

    .responsive-table thead tr:nth-child(1) th, .table2 thead tr:nth-child(1) th {
        padding: 15px 10px
    }

    .responsive-table thead tr, .responsive-table tr {
        display: flex
    }

    .responsive-table thead tr {
        background: var(--grey);
        color: var(--black)
    }

    .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 tbody tr td:nth-child(1) {
        background: none;
        color: var(--white)
    }

    .history-container.table3 td .flex {
        justify-content: flex-start;
        gap: 5px
    }

    .history-container.table3 td .flex .lottery-ball {
        width: 35px;
        height: 35px;
        font-size: var(--font14)
    }

    .history-container.table3 td:nth-child(1), .history-container.table3 th:nth-child(1), .history-container.table3 td:nth-child(2), .history-container.table3 th:nth-child(2), .history-container.table3 td:nth-child(3), .history-container.table3 th:nth-child(3) {
        padding: 12px 10px
    }

    .superwrapper table {
        width: 100%
    }

    .history-container.table3 td:nth-child(1), .history-container.table3 th:nth-child(1) {
        width: 20%
    }

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

    table tr > [data-label]::before {
        display: none;
    }

    .responsive-table table tbody tr:first-child {
        display: flex;
        background: #0b9c63;
        color: #fff;
    }
}

.infobox h2 {
    color: var(--accent);
    font-weight: 300;
    text-align: center
}

.infobox h2 span {
    display: block;
    font-weight: 600
}

.infobox img {
    width: 25%;
    margin: 0 auto var(--vw2);
    max-width: 60px
}

.info-item {
    text-align: center
}

.info-item p:first-of-type {
    font-weight: 600;
    font-size: var(--font16)
}

.info-item p {
    color: var(--bannertextcolor);
    text-align: center;
    font-size: var(--font14);
    font-weight: 300
}

@media (min-width: 660px) {
    .info-item {
        width: 45%
    }
}

@media (min-width: 1000px) {
    .info-item {
        width: 31%
    }
}

.fw-wrapper {
    padding: var(--padding);
    background: #222
}

section.mdv-fw {
    width: 100%;
    height: 230px;
    position: relative;
    margin: 10px auto 30px;
    overflow: hidden;
    border-radius: 10px;
    transition: 1s;
    padding: 10px 0;
    background-color: #dcd932;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%232e4b3f' fill-opacity='0.17'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    max-width: 400px
}

h2.fw {
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px 0 15px;
    opacity: 0;
    transition: 1s;
    transition-delay: 2s
}

h2.fw span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center
}

.cinta1 {
    width: 100%;
    height: 40px;
    background: var(--maincolor);
    position: absolute;
    top: 40%;
    z-index: 1
}

.cinta2 {
    width: 40px;
    height: 100%;
    background: var(--maincolor);
    position: absolute;
    z-index: 1;
    left: 46%;
    top: 0
}

button.mdv-button {
    -webkit-appearance: none;
    border: none;
    margin: 25px auto 15px;
    display: block;
    color: #333;
    padding: 20px 0;
    font-size: 16px;
    border-radius: 50%;
    bottom: 36px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 2;
    transform: rotate(-8deg);
    font-weight: 600
}

button.mdv-button.absolute {
    bottom: -160px;
    transition: .5s cubic-bezier(.75, -.5, 0, 1.75);
    transition-delay: .5s
}

.mdv-fw .megaSena {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 1s;
    gap: 5vw
}

.bola {
    opacity: 0
}

.bola:nth-child(1) {
    transition-delay: 1s
}

.bola:nth-child(2) {
    transition-delay: 1.5s
}

.bola:nth-child(3) {
    transition-delay: 2s
}

.bola:nth-child(4) {
    transition-delay: 2.5s
}

.bola:nth-child(5) {
    transition-delay: 3s
}

.bola:nth-child(6) {
    transition-delay: 3.5s
}

#fireworks {
    opacity: 0;
    transition: .1s;
    transition-delay: 4s
}

.cta-mdv {
    transition: .4s cubic-bezier(.75, -.5, 0, 1.75);
    transition-delay: 3.8s;
    position: absolute;
    bottom: -150px;
    margin: 20px auto
}

.pyro > .before, .pyro > .after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
    -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
    animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards
}

.pyro > .after {
    -moz-animation-delay: 1.25s, 1.25s, 1.25s;
    -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
    -o-animation-delay: 1.25s, 1.25s, 1.25s;
    -ms-animation-delay: 1.25s, 1.25s, 1.25s;
    animation-delay: 1.25s, 1.25s, 1.25s;
    -moz-animation-duration: 1.25s, 1.25s, 6.25s;
    -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
    -o-animation-duration: 1.25s, 1.25s, 6.25s;
    -ms-animation-duration: 1.25s, 1.25s, 6.25s;
    animation-duration: 1.25s, 1.25s, 6.25s
}

@-webkit-keyframes bang {
    to {
        box-shadow: -145px -349.6666666667px #4800ff, -227px -271.6666666667px #a2ff00, -28px -265.6666666667px #0062ff, -213px -43.6666666667px #00eaff, 2px -234.6666666667px #00ff62, -218px -162.6666666667px #df0, -134px -353.6666666667px #20f, 190px -292.6666666667px #00bfff, -125px -360.6666666667px #ff0073, -71px -259.6666666667px #ff0051, -185px -223.6666666667px #00ffae, 197px -359.6666666667px #ff6f00, -118px -57.6666666667px #ffe100, -127px -370.6666666667px #ff00c8, 212px -352.6666666667px #ff4d00, 141px -33.6666666667px #0040ff, -139px -282.6666666667px #df0, -85px -11.6666666667px #00aeff, 62px -347.6666666667px #ff0084, 150px -213.6666666667px #5100ff, -210px 36.3333333333px #0f0, -235px -40.6666666667px #00fbff, -92px -71.6666666667px #00ffea, 38px -152.6666666667px #f60, -99px -6.6666666667px #00aeff, -88px -192.6666666667px #00ff59, 66px 48.3333333333px #f70, 59px 26.3333333333px #84ff00, 226px -379.6666666667px #003cff, 50px -8.6666666667px #00ff37, -248px 3.3333333333px #ff00ea, 189px 50.3333333333px #03f, -74px -387.6666666667px #bf0, -246px -78.6666666667px #ff4000, -206px -189.6666666667px #ff0062, 135px -231.6666666667px #ffc800, 136px 14.3333333333px #ff00ae, -109px 50.3333333333px #62ff00, 172px -288.6666666667px #ff0400, -66px -299.6666666667px #2fff00, 13px -335.6666666667px #0fc, -41px -306.6666666667px #0080ff, -37px -383.6666666667px #ffc800, 32px -213.6666666667px #ff0040, 1px -389.6666666667px #00d9ff, -28px -178.6666666667px #a6ff00, -117px -19.6666666667px #b3ff00, -37px -153.6666666667px #af0, 85px -305.6666666667px #0bf, 173px 39.3333333333px #0f9, 182px -128.6666666667px #73ff00
    }
}

@-moz-keyframes bang {
    to {
        box-shadow: -145px -349.6666666667px #4800ff, -227px -271.6666666667px #a2ff00, -28px -265.6666666667px #0062ff, -213px -43.6666666667px #00eaff, 2px -234.6666666667px #00ff62, -218px -162.6666666667px #df0, -134px -353.6666666667px #20f, 190px -292.6666666667px #00bfff, -125px -360.6666666667px #ff0073, -71px -259.6666666667px #ff0051, -185px -223.6666666667px #00ffae, 197px -359.6666666667px #ff6f00, -118px -57.6666666667px #ffe100, -127px -370.6666666667px #ff00c8, 212px -352.6666666667px #ff4d00, 141px -33.6666666667px #0040ff, -139px -282.6666666667px #df0, -85px -11.6666666667px #00aeff, 62px -347.6666666667px #ff0084, 150px -213.6666666667px #5100ff, -210px 36.3333333333px #0f0, -235px -40.6666666667px #00fbff, -92px -71.6666666667px #00ffea, 38px -152.6666666667px #f60, -99px -6.6666666667px #00aeff, -88px -192.6666666667px #00ff59, 66px 48.3333333333px #f70, 59px 26.3333333333px #84ff00, 226px -379.6666666667px #003cff, 50px -8.6666666667px #00ff37, -248px 3.3333333333px #ff00ea, 189px 50.3333333333px #03f, -74px -387.6666666667px #bf0, -246px -78.6666666667px #ff4000, -206px -189.6666666667px #ff0062, 135px -231.6666666667px #ffc800, 136px 14.3333333333px #ff00ae, -109px 50.3333333333px #62ff00, 172px -288.6666666667px #ff0400, -66px -299.6666666667px #2fff00, 13px -335.6666666667px #0fc, -41px -306.6666666667px #0080ff, -37px -383.6666666667px #ffc800, 32px -213.6666666667px #ff0040, 1px -389.6666666667px #00d9ff, -28px -178.6666666667px #a6ff00, -117px -19.6666666667px #b3ff00, -37px -153.6666666667px #af0, 85px -305.6666666667px #0bf, 173px 39.3333333333px #0f9, 182px -128.6666666667px #73ff00
    }
}

@-o-keyframes bang {
    to {
        box-shadow: -145px -349.6666666667px #4800ff, -227px -271.6666666667px #a2ff00, -28px -265.6666666667px #0062ff, -213px -43.6666666667px #00eaff, 2px -234.6666666667px #00ff62, -218px -162.6666666667px #df0, -134px -353.6666666667px #20f, 190px -292.6666666667px #00bfff, -125px -360.6666666667px #ff0073, -71px -259.6666666667px #ff0051, -185px -223.6666666667px #00ffae, 197px -359.6666666667px #ff6f00, -118px -57.6666666667px #ffe100, -127px -370.6666666667px #ff00c8, 212px -352.6666666667px #ff4d00, 141px -33.6666666667px #0040ff, -139px -282.6666666667px #df0, -85px -11.6666666667px #00aeff, 62px -347.6666666667px #ff0084, 150px -213.6666666667px #5100ff, -210px 36.3333333333px #0f0, -235px -40.6666666667px #00fbff, -92px -71.6666666667px #00ffea, 38px -152.6666666667px #f60, -99px -6.6666666667px #00aeff, -88px -192.6666666667px #00ff59, 66px 48.3333333333px #f70, 59px 26.3333333333px #84ff00, 226px -379.6666666667px #003cff, 50px -8.6666666667px #00ff37, -248px 3.3333333333px #ff00ea, 189px 50.3333333333px #03f, -74px -387.6666666667px #bf0, -246px -78.6666666667px #ff4000, -206px -189.6666666667px #ff0062, 135px -231.6666666667px #ffc800, 136px 14.3333333333px #ff00ae, -109px 50.3333333333px #62ff00, 172px -288.6666666667px #ff0400, -66px -299.6666666667px #2fff00, 13px -335.6666666667px #0fc, -41px -306.6666666667px #0080ff, -37px -383.6666666667px #ffc800, 32px -213.6666666667px #ff0040, 1px -389.6666666667px #00d9ff, -28px -178.6666666667px #a6ff00, -117px -19.6666666667px #b3ff00, -37px -153.6666666667px #af0, 85px -305.6666666667px #0bf, 173px 39.3333333333px #0f9, 182px -128.6666666667px #73ff00
    }
}

@-ms-keyframes bang {
    to {
        box-shadow: -145px -349.6666666667px #4800ff, -227px -271.6666666667px #a2ff00, -28px -265.6666666667px #0062ff, -213px -43.6666666667px #00eaff, 2px -234.6666666667px #00ff62, -218px -162.6666666667px #df0, -134px -353.6666666667px #20f, 190px -292.6666666667px #00bfff, -125px -360.6666666667px #ff0073, -71px -259.6666666667px #ff0051, -185px -223.6666666667px #00ffae, 197px -359.6666666667px #ff6f00, -118px -57.6666666667px #ffe100, -127px -370.6666666667px #ff00c8, 212px -352.6666666667px #ff4d00, 141px -33.6666666667px #0040ff, -139px -282.6666666667px #df0, -85px -11.6666666667px #00aeff, 62px -347.6666666667px #ff0084, 150px -213.6666666667px #5100ff, -210px 36.3333333333px #0f0, -235px -40.6666666667px #00fbff, -92px -71.6666666667px #00ffea, 38px -152.6666666667px #f60, -99px -6.6666666667px #00aeff, -88px -192.6666666667px #00ff59, 66px 48.3333333333px #f70, 59px 26.3333333333px #84ff00, 226px -379.6666666667px #003cff, 50px -8.6666666667px #00ff37, -248px 3.3333333333px #ff00ea, 189px 50.3333333333px #03f, -74px -387.6666666667px #bf0, -246px -78.6666666667px #ff4000, -206px -189.6666666667px #ff0062, 135px -231.6666666667px #ffc800, 136px 14.3333333333px #ff00ae, -109px 50.3333333333px #62ff00, 172px -288.6666666667px #ff0400, -66px -299.6666666667px #2fff00, 13px -335.6666666667px #0fc, -41px -306.6666666667px #0080ff, -37px -383.6666666667px #ffc800, 32px -213.6666666667px #ff0040, 1px -389.6666666667px #00d9ff, -28px -178.6666666667px #a6ff00, -117px -19.6666666667px #b3ff00, -37px -153.6666666667px #af0, 85px -305.6666666667px #0bf, 173px 39.3333333333px #0f9, 182px -128.6666666667px #73ff00
    }
}

@keyframes bang {
    to {
        box-shadow: -145px -349.6666666667px #4800ff, -227px -271.6666666667px #a2ff00, -28px -265.6666666667px #0062ff, -213px -43.6666666667px #00eaff, 2px -234.6666666667px #00ff62, -218px -162.6666666667px #df0, -134px -353.6666666667px #20f, 190px -292.6666666667px #00bfff, -125px -360.6666666667px #ff0073, -71px -259.6666666667px #ff0051, -185px -223.6666666667px #00ffae, 197px -359.6666666667px #ff6f00, -118px -57.6666666667px #ffe100, -127px -370.6666666667px #ff00c8, 212px -352.6666666667px #ff4d00, 141px -33.6666666667px #0040ff, -139px -282.6666666667px #df0, -85px -11.6666666667px #00aeff, 62px -347.6666666667px #ff0084, 150px -213.6666666667px #5100ff, -210px 36.3333333333px #0f0, -235px -40.6666666667px #00fbff, -92px -71.6666666667px #00ffea, 38px -152.6666666667px #f60, -99px -6.6666666667px #00aeff, -88px -192.6666666667px #00ff59, 66px 48.3333333333px #f70, 59px 26.3333333333px #84ff00, 226px -379.6666666667px #003cff, 50px -8.6666666667px #00ff37, -248px 3.3333333333px #ff00ea, 189px 50.3333333333px #03f, -74px -387.6666666667px #bf0, -246px -78.6666666667px #ff4000, -206px -189.6666666667px #ff0062, 135px -231.6666666667px #ffc800, 136px 14.3333333333px #ff00ae, -109px 50.3333333333px #62ff00, 172px -288.6666666667px #ff0400, -66px -299.6666666667px #2fff00, 13px -335.6666666667px #0fc, -41px -306.6666666667px #0080ff, -37px -383.6666666667px #ffc800, 32px -213.6666666667px #ff0040, 1px -389.6666666667px #00d9ff, -28px -178.6666666667px #a6ff00, -117px -19.6666666667px #b3ff00, -37px -153.6666666667px #af0, 85px -305.6666666667px #0bf, 173px 39.3333333333px #0f9, 182px -128.6666666667px #73ff00
    }
}

@-webkit-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0
    }
}

@-moz-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0
    }
}

@-o-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0
    }
}

@-ms-keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0
    }
}

@keyframes gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0
    }
}

@-webkit-keyframes position {
    0%, 19.9% {
        margin-top: -20%;
        margin-left: 40%
    }
    20%, 39.9% {
        margin-top: 0%;
        margin-left: 30%
    }
    40%, 59.9% {
        margin-top: -12%;
        margin-left: 70%
    }
    60%, 79.9% {
        margin-top: -8%;
        margin-left: 20%
    }
    80%, 99.9% {
        margin-top: -2%;
        margin-left: 80%
    }
}

@-moz-keyframes position {
    0%, 19.9% {
        margin-top: -20%;
        margin-left: 40%
    }
    20%, 39.9% {
        margin-top: 0%;
        margin-left: 30%
    }
    40%, 59.9% {
        margin-top: -12%;
        margin-left: 70%
    }
    60%, 79.9% {
        margin-top: -8%;
        margin-left: 20%
    }
    80%, 99.9% {
        margin-top: -2%;
        margin-left: 80%
    }
}

@-o-keyframes position {
    0%, 19.9% {
        margin-top: -20%;
        margin-left: 40%
    }
    20%, 39.9% {
        margin-top: 0%;
        margin-left: 30%
    }
    40%, 59.9% {
        margin-top: -12%;
        margin-left: 70%
    }
    60%, 79.9% {
        margin-top: -8%;
        margin-left: 20%
    }
    80%, 99.9% {
        margin-top: -2%;
        margin-left: 80%
    }
}

@-ms-keyframes position {
    0%, 19.9% {
        margin-top: -20%;
        margin-left: 40%
    }
    20%, 39.9% {
        margin-top: 0%;
        margin-left: 30%
    }
    40%, 59.9% {
        margin-top: -12%;
        margin-left: 70%
    }
    60%, 79.9% {
        margin-top: -8%;
        margin-left: 20%
    }
    80%, 99.9% {
        margin-top: -2%;
        margin-left: 80%
    }
}

@keyframes position {
    0%, 19.9% {
        margin-top: -20%;
        margin-left: 40%
    }
    20%, 39.9% {
        margin-top: 0%;
        margin-left: 30%
    }
    40%, 59.9% {
        margin-top: -12%;
        margin-left: 70%
    }
    60%, 79.9% {
        margin-top: -8%;
        margin-left: 20%
    }
    80%, 99.9% {
        margin-top: -2%;
        margin-left: 80%
    }
}

.sticker {
    background-color: transparent;
    background-image: linear-gradient(-7deg, transparent 20px, #F6404F 17px);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 3em auto;
    position: relative
}

.sticker:before {
    display: block;
    content: "";
    background: white;
    width: 74px;
    height: 8px;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    -webkit-transform: rotate(6deg);
    transform: rotate(173deg);
    position: absolute;
    top: 110px;
    left: 35px;
    box-shadow: inset 2px 3px 3px #0000001a, 6px 4px 2px #0000001a, 1px 1px 3px #0003
}

@-webkit-keyframes spaceboots {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg)
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg)
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg)
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg)
    }
    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg)
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg)
    }
    to {
        -webkit-transform: translate(1px, -2px) rotate(-1deg)
    }
}

.shake:hover, .shake:focus {
    -webkit-animation-name: spaceboots;
    -webkit-animation-duration: .8s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear
}

@media (min-width: 660px) {
    section.mdv-fw {
        width: 70%;
        height: 270px
    }

    .mdv-fw .megaSena {
        gap: 5px
    }

    h2.fw {
        font-size: 40px;
        padding: 30px 0 15px
    }

    h2.fw span {
        font-size: 20px
    }

    .cinta1 {
        top: 44%
    }

    button.mdv-button {
        bottom: 50px;
        left: -6px;
        right: 0
    }

    button.mdv-button.absolute {
        bottom: -150px;
        transition: .5s cubic-bezier(.75, -.5, 0, 1.75);
        transition-delay: .5s
    }

    #fireworks {
        opacity: 0;
        transition: .1s;
        transition-delay: 4s
    }
}

.card-table-wrapper {
    padding: 0 var(--Hpadding);
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    align-items: flex-start
}

.card-table {
    padding: 3vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 2vw;
    background: var(--background);
    color: var(--grey);
    border-radius: 6px
}

.card-table h2 {
    font-size: var(--font16);
    text-transform: uppercase;
    margin: 0 0 3vw
}

.card-table p {
    font-weight: 300;
    font-size: var(--font14)
}

.card-action {
    display: flex;
    justify-content: center;
    gap: 3vw
}

.card-action span {
    width: auto;
    font-weight: 900;
    display: flex;
    align-items: center
}

.card-action button {
    width: 7vw;
    font-weight: 900;
    border-radius: 100%;
    border: 1px solid;
    height: 7vw
}

.card-action button[disabled] {
    opacity: .6;
    cursor: not-allowed
}

.card-table .lottery-ball {
    transition: .2s ease-out
}

.card-table .lottery-ball.hide {
    visibility: hidden
}

.card-table .lottery-ball.changing {
    transform: scale(0)
}

.card-jackpot {
    font-size: var(--font20);
    font-weight: 700
}

.card-desc {
    line-height: 1.4;
    padding: 0 3vw
}

.card-desc.fade {
    opacity: 0;
    transition: .3s ease-out
}

.card-jackpot.fade {
    opacity: 0;
    transition: .1s ease-out
}

.cardtable {
    color: var(--black)
}

.payment-methods {
    background: var(--maincolor);
    padding: 5vw var(--Hpadding);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    justify-content: center;
    text-align: center
}

.payment-header p {
    font-size: var(--font12);
    font-weight: 100
}

.pay-body {
    font-size: var(--font14);
    font-weight: 100
}

.payment-action {
    display: flex;
    max-width: 500px;
    gap: 5vw;
    justify-content: center;
    margin-top: 5vw
}

.payment-action button {
    border: 1px solid black;
    border-radius: 100%;
    width: 10vw;
    height: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    box-shadow: 1px 1px 10px #0000007d
}

.payment-action button:hover, .payment-action button.active {
    border-color: #fff
}

.payment-action button.active img {
    filter: invert(1)
}

@media (min-width: 660px) {
    .card-table {
        padding: 25px;
        gap: 10px
    }

    .card-table h2 {
        margin: 0 0 10px
    }

    .card-action {
        gap: 15px
    }

    .card-action button {
        width: 35px;
        height: 35px
    }

    .card-table .lottery-ball-container {
        margin: 20px auto;
        justify-content: center
    }

    .card-table-wrapper {
        gap: 15px
    }

    .payment-methods {
        padding: 30px var(--Hpadding) !important;
        gap: 20px
    }

    .payment-header h3 {
        font-size: 20px
    }

    .payment-header p, .pay-body {
        font-size: 16px
    }

    .payment-action {
        margin-top: 30px;
        gap: 20px
    }

    .payment-action button {
        width: 44px;
        height: 44px;
        padding: 10px
    }
}

@media (min-width: 1000px) {
    .payment-methods {
        padding: 15px !important;
        border-radius: 5px
    }

    .payment-header h3 {
        font-size: 18px
    }

    .payment-header p, .pay-body {
        font-size: 14px
    }

    .payment-action {
        margin-top: 0
    }
}

.coupons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw3);
    padding: var(--vw5) 0
}

.coupon {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px dotted var(--llgreen);
    padding: var(--vw3);
    border-radius: 4px;
    gap: 1%
}

.coupon-left {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw2)
}

.coupon-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2vw
}

.coupon-title img {
    max-width: 9vw
}

.coupon-right {
    width: 29%;
    text-align: center
}

.coupon p {
    margin: 0
}

.coupon-title p {
    font-weight: 600;
    font-size: var(--font16)
}

.coupon-right p:nth-child(2) {
    margin-bottom: 2vw
}

.coupon-cta {
    width: 100%
}

@media (min-width: 660px) {
    .coupon-left {
        gap: 6px
    }

    .coupon-right p:nth-child(2) {
        margin-bottom: 5px
    }

    .coupon-cta {
        margin: 0
    }

    .coupon-title {
        margin: 0 0 12px;
        gap: 5px
    }

    .coupon {
        padding: 15px;
        width: 48%
    }

    .coupon-title img {
        max-width: 35px
    }
}

@media (min-width: 1000px) {
    .coupon {
        width: 32%
    }
}

main.withSubnav {
    margin-top: calc(var(--headerHeight) + 8vw)
}

.subnav {
    position: fixed;
    top: var(--headerHeight);
    left: 0
}

.subnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 var(--Hpadding);
    background: var(--grey);
    font-size: var(--font9);
    align-items: center;
    height: 8vw
}

.subnav li {
    width: auto
}

.subnav li img {
    display: none
}

.subnav li button {
    font-weight: 500;
    color: var(--maincolor)
}

.subnav li button.selected {
    font-weight: 700;
    color: var(--black)
}


@media (min-width: 660px) {
    main.withSubnav {
        margin-top: calc(var(--headerHeight) + 38px)
    }

    .subnav ul {
        font-size: 12px;
        height: 38px
    }

    .subnav li {
        width: auto;
        display: flex;
        gap: 3px
    }

    .subnav li img {
        display: flex;
        width: 20px
    }

    .subnav li a {
        font-weight: 500
    }
}

@media (min-width: 1000px) {
    main.withSubnav {
        margin-top: calc(var(--headerHeight) + 38px)
    }

    .subnav ul {
        font-size: 12px;
        height: 38px
    }

    .subnav li {
        display: flex;
        align-items: center;
        gap: 5px
    }

    .subnav li img {
        display: block
    }

    .subnav li a {
        font-weight: 500
    }

    .subnav li a:hover {
        font-weight: 600
    }
}

.betslip2020-wrapper {
    background: linear-gradient(to right, rgb(243, 211, 7) 33.3333%, rgb(230, 176, 15) 66.6667%);
    padding: var(--vw9) var(--vw2)
}

.play-header h1 {
    color: var(--bannertextcolor);
    font-size: var(--font20);
    font-weight: 600;
    text-transform: uppercase
}

.tippfeld {
    display: none;
    background: #fff;
    padding: var(--vw2);
    border-radius: 6px 6px 0 0;
    position: relative;
    opacity: 1
}

.tippfeld.fading {
    opacity: 0;
    transition: 1s
}

.tippfeld#t1, .tippfeld.show {
    display: block
}

.tippfeld-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: var(--vw3)
}

.tippfeld-count, .tippfeld-count span {
    color: var(--black);
    font-weight: 700;
    font-size: var(--font14);
    width: 30%;
    transform: translateY(2vw)
}

.cta-2.zuffals-button {
    border: 1px solid #dadada;
    box-shadow: none;
    color: var(--black);
    font-size: var(--font10);
    width: 50%;
    height: var(--btheight);
    display: flex;
    gap: var(--vw3)
}

.cta-2.zuffals-button img {
    width: auto;
    height: 88%
}

.trash {
    border-radius: 100%;
    border: 1px solid #dadada;
    width: var(--btheight);
    height: var(--btheight);
    display: flex;
    justify-content: center;
    align-items: center
}

.trash img {
    width: auto
}

.tippfeld-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: var(--vw5) auto
}

.tippfeld-numbers {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--vw2)
}

.tipp-number {
    width: 12.4%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--grey);
    height: var(--btheight);
    border-radius: 6px;
    color: var(--black);
    font-weight: 400;
    font-size: var(--font12);
    position: relative
}

.tipp-number img {
    position: absolute;
    width: 60%;
    display: none
}

.tipp-number.checked img {
    display: block
}

.next-tippfeld {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: var(--vw5) 0
}

.next-tippfeld button {
    height: var(--btheight);
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5c657;
    border-radius: 25px;
    font-weight: 700;
    font-size: var(--font13);
    color: var(--black)
}

.betslip2020-helper {
    background: var(--black);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--vw3);
    gap: var(--vw3)
}

.betslip2020-helper span {
    color: #fff;
    font-size: var(--font12);
    font-weight: 300
}

.helper-left, .helper-right {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--vw2)
}

.helper-left span {
    width: 100%;
    display: block
}

.helper-left span:nth-child(1), .helper-right span:nth-child(1) {
    font-weight: 600
}

.helper-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--vw2)
}

.helper-buttons button {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    height: var(--btheight);
    width: var(--btheight);
    border: 1px solid #fff
}

.helper-buttons button:nth-child(3) {
    width: 50px
}

.betslip2020-checkout {
    background: #fff;
    border-radius: 0 0 6px 6px;
    padding: var(--vw5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: var(--vw3)
}

.betslip-cta {
    width: 250px !important;
    font-size: var(--font15);
    margin: auto
}

.betslip-cta.off {
    background: #8888
}

.betslip-cost.off, .figure-cost.off {
    color: #8888
}

.tippfeld.submitted {
    border-radius: 6px;
    margin-bottom: 1px
}

.tippfeld.submitted .tipp-number:not(.checked), .tippfeld.submitted .tippfeld-legend, .tippfeld.submitted .plus, .tippfeld.submitted .zuffals-button, .tippfeld.submitted .tipp-star:not(.checked), .tippfeld.submitted .tipp-number.checked img, .tippfeld.submitted .tipp-star.checked img, .tippfeld.submitted .next-tippfeld {
    display: none
}

.tippfeld.submitted .tippfeld-numbers {
    width: 100%;
    justify-content: flex-start;
    margin: var(--vw2) 0;
    align-items: center;
    position: relative
}

.tippfeld.submitted .tipp-number.checked {
    width: 33px;
    height: 33px;
    font-size: var(--font14);
    color: var(--black);
    margin: 0 5px 0 0;
    background: #fff;
    border: 1px solid var(--grey);
    border-radius: 100%
}

.tippfeld.submitted .tipp-star.checked {
    width: 33px;
    height: 33px;
    font-size: var(--font14);
    color: var(--black);
    margin: 0 5px 0 0
}

.tippfeld.submitted .trash, .trashline {
    display: none
}

.tippfeld.submitted .trashline {
    border-radius: 100%;
    border: 1px solid #dadada;
    width: var(--btheight);
    height: var(--btheight);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0
}

.figure-cost {
    font-weight: 900
}

.helper-extra, .tipp-move-left, .tipp-move-right, .next-tippfeld button, .completed-felder {
    display: none
}

.play-header p {
    font-size: var(--font14);
    font-weight: 300;
    margin: var(--vw2) 0 0;
    color: var(--bannertextcolor)
}

.next-tipp-desktop {
    height: var(--btheight);
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--grey);
    border-radius: 25px;
    font-weight: 700;
    font-size: var(--font13);
    color: var(--black);
    overflow: hidden;
    position: relative
}

.next-tipp-desktop.hide {
    display: none
}

.next-tipp-button.show {
    display: flex
}

#next-tipp-overlay, .next-tipp-overlay {
    background: #f5c657;
    position: absolute;
    height: 100%;
    left: 0;
    transition: .4s;
    width: auto
}

.overlay-0 {
    width: 0
}

.overlay-1 {
    width: 14%
}

.overlay-2 {
    width: 28%
}

.overlay-3 {
    width: 42%
}

.overlay-4 {
    width: 57%
}

.overlay-5 {
    width: 70%
}

.overlay-6 {
    width: 85%
}

.overlay-7 {
    width: 100%
}

.next-tipp-text {
    z-index: 2;
    font-size: var(--font13);
    color: var(--black);
    text-align: center
}

.multibet {
    display: none
}

@media (min-width: 660px) {
    .betslip2020-wrapper {
        padding: 50px var(--Hpadding);
    }

    .tippfeld-wrapper {
        background: white;
        border-radius: 6px;
        position: relative;
    }

    .tipp-number {
        height: 30px;
        cursor: pointer;
        width: 14.2%
    }

    .tipp-number:hover, .tipp-star:hover {
        color: #4f5850;
        background: #f5f2f2
    }

    .cta-2.zuffals-button:hover, .trash:hover {
        border: 1px solid #656565
    }

    .helper-buttons button:hover {
        color: #f4c556;
        border: 1px solid #f4c556
    }

    .tippfeld-count, .tippfeld-count span {
        transform: none
    }

    .trash {
        position: absolute;
        bottom: 25px;
        left: 30px;
        padding: 8px
    }

    .next-tippfeld {
        justify-content: flex-end;
        text-align: center
    }

    .betslip2020-checkout {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 20px
    }

    .betslip-cta {
        margin: 0
    }

    .betslip-cost {
        text-align: right;
        margin: 0 10px 0 0;
        font-size: 16px;
        width: auto
    }

    .betslip2020-helper span {
        font-size: 14px;
        margin: 0 5px 0 0;
        width: auto
    }

    .helper-left, .helper-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        width: auto
    }

    .helper-left span:nth-child(2) {
        margin: 0 5px 0 0
    }

    .helper-left span:nth-child(1), .helper-right span:nth-child(1) {
        margin-bottom: 0
    }

    .betslip2020-helper {
        align-items: center;
        padding: 15px 25px
    }

    .helper-buttons {
        margin: 0;
        width: auto
    }

    .helper-extra {
        display: flex;
        width: auto;
        align-items: center
    }

    .helper-extra span {
        font-weight: 700
    }

    .felder-wrapper {
        margin: 0 0 0 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center
    }

    .helper-extra span.felder {
        font-size: 14px;
        color: #fff;
        background: #ffffff1f;
        font-weight: 400;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 30px
    }

    .helper-extra span.felder.filled {
        background: #F6C758;
        color: var(--black)
    }

    .helper-extra span.felder.num-1 {
        border-radius: 20px 0 0 20px
    }

    .helper-extra span.felder.num-10 {
        border-radius: 0 20px 20px 0
    }

    #tippfeld-slider {
        display: flex;
        flex-wrap: wrap;
        width: 500%;
        transition: .4s
    }

    .tipp-slider-container {
        padding: 15px 0;
        overflow: hidden
    }

    #tippfeld-slider.left-2 {
        transform: translate(-10%)
    }

    #tippfeld-slider.left-3 {
        transform: translate(-20%)
    }

    #tippfeld-slider.left-4 {
        transform: translate(-30%)
    }

    #tippfeld-slider.left-5 {
        transform: translate(-40%)
    }

    #tippfeld-slider.left-6 {
        transform: translate(-50%)
    }

    #tippfeld-slider.left-7 {
        transform: translate(-60%)
    }

    #tippfeld-slider.left-8 {
        transform: translate(-70%)
    }

    #tippfeld-slider.left-9 {
        transform: translate(-80%)
    }

    .tippfeld {
        display: block;
        width: 10%;
        margin-right: 0;
        padding: 0 30px
    }

    .next-tippfeld button {
        display: none
    }

    .tipp-move-left, .tipp-move-right {
        position: absolute;
        height: 50px;
        width: 25px;
        background: rgb(230, 176, 15);
        box-shadow: 0 0 15px #00000076;
        border-radius: 4px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-weight: 900
    }

    .tipp-move-left i, .tipp-move-right i {
        color: #fff
    }

    .tipp-move-left:hover, .tipp-move-right:hover {
        background: rgb(243, 211, 7);
    }

    .tipp-move-left {
        left: -12.5px;
        top: 44.5%
    }

    .tipp-move-right {
        right: -12.5px;
        top: 44.5%
    }

    .tipp-move-left.show, .tipp-move-right.show {
        display: flex
    }

    .completed-felder {
        position: absolute;
        background: #f5c657;
        width: 100%;
        height: 100%;
        display: none;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        z-index: 3
    }

    .completed-felder.show {
        display: flex
    }

    .play-header p {
        font-size: 20px
    }

    .cta-2.zuffals-button {
        margin: 0;
        height: 35px;
        width: 55%;
        max-width: 120px
    }

    .tippfeld-header {
        align-items: center
    }

    .tippfeld-numbers {
        gap: 6px
    }
}

@media (min-width: 1000px) {
    .tippfeld {
        display: block;
        width: 10%;
        margin-right: 0;
        padding: 0 30px
    }

    #tippfeld-slider {
        width: 333.333%
    }

    .next-tipp-desktop {
        width: 160px
    }

    #tippfeld-slider.left-2 {
        transform: translate(-20%)
    }

    #tippfeld-slider.left-3 {
        transform: translate(-40%)
    }

    #tippfeld-slider.left-4 {
        transform: translate(-60%)
    }

    #tippfeld-slider.left-5 {
        transform: translate(-70%)
    }
}

@media (min-width: 1400px) {
    .helper-left, .helper-right {
        width: auto
    }

    .helper-extra {
        margin: 0
    }
}

@media (min-width: 1000px) {
    .banner-wrapper {
        background-position: 0 0;
    }
}
