﻿/* General Styles */
*
{
    margin: 0;
    padding: 0;
}
a
{
    text-decoration: none;
}/* Mobile Styles */
:root
{
    --font-old-design: calc(12px + (30 - 12) * ((100vw - 320px) / (768 - 320)));
    --wrapper-old-design: 0 1.2307em;
}
body
{
    font-size: calc(16px + (32 - 16) * ((100vw - 390px) / (780 - 390)));
    font-family: Tahoma,Arial,sans-serif;
    background-color: #fff;
    color: #000;
}
.wrapper
{
    margin: 0 1.125em;
}
.highlighted
{
    color: #fdc600;
    font-weight: bold;
}
.casino .highlighted
{
    color: #fff;
}
.desktop-element
{
    display: none;
}
.section-heading
{
    text-align: center;
    line-height: 1;
}
.cta-container
{
    margin-top: 1.4em;
}
.cta
{
    display: block;
    margin: .7em auto;
    padding: .15em 0;
    color: #023a00;
    background-color: #fdc600;
    color: #000;
    font-size: 2.3em;
    font-weight: 400;
    border-radius: 1em;
    text-align: center;
    animation: glowing-cta 1.4s infinite;
}
.casino .cta
{
    background-color: #9441ff;
    color: #fff;
    animation: glowing-cta-casino 1.4s infinite;
}
@keyframes glowing-cta
{
    0%
    {
        box-shadow: 0 0 0 #fdc600,0 0 0 #fdc600;
    }
    50%
    {
        box-shadow: 0 0 5px #fdc600,0 0 25px #fdc600;
    }
}
@keyframes glowing-cta-casino
{
    0%
    {
        box-shadow: 0 0 0 #9441ff,0 0 0 #9441ff;
    }
    50%
    {
        box-shadow: 0 0 5px #9441ff,0 0 25px #9441ff;
    }
}/* Main Banner Section Styles */
.main-banner
{
    color: #fff;
}
.main-banner.sports-bonus
{/* background: url(../img/main-banners/sports-bonus-mobile.png) no-repeat; Default design */
    background: url(../../bcgamebettingde/image/sports-ipl-welcome-bonus-mobile.jpg) no-repeat;
    background-size: contain;
    background-color: #010242;
}
.main-banner.sports-welcome-short
{
    background: url(../../bcgamebettingde/image/sports-welcome-short-mobile.jpg) no-repeat;
    background-size: cover;
}
.main-banner.sports-bonus-short
{/* background: url(../img/main-banners/sports-bonus-short-mobile-Large.jpg) no-repeat; Default design */
    background: url(../../bcgamebettingde/image/sports-ipl-welcome-bonus-mobile.jpg) no-repeat;
    background-size: contain;
    background-color: #010242;
}
.main-banner.casino-bonus-short
{
    background: url(../../bcgamebettingde/image/casino-bonus-short-mobile-Large.jpg) no-repeat;
    background-size: cover;
    background-color: #dbaf42;
}
.main-banner.casino-bonus-jetx
{
    background: url(../../bcgamebettingde/image/casino-bonus-short-jetx-2-mobile-Large.jpg) no-repeat;
    background-size: cover;
    background-color: #00467c;
}
.main-banner.casino-bonus-jetx-short
{
    background: url(../../bcgamebettingde/image/casino-bonus-short-jetx-mobile-Large.jpg) no-repeat;
    background-size: cover;
    background-color: #00467c;
}
.main-banner.casino-bonus-jetx-2-short
{
    background: url(../../bcgamebettingde/image/casino-bonus-short-jetx-2-mobile-Large.jpg) no-repeat;
    background-size: cover;
    background-color: #00467c;
}
.main-banner-container
{
    padding: 1.125em 0 0 0;
}
.main-banner .logo img
{
    width: 4.5em;
}
.main-banner .logo-ipl img
{
    width: 4.5em;
}
.main-banner h1
{
    margin-top: 5.7em;
    font-size: 3.3em;
    text-align: center;
    font-weight: 400;
}
.main-banner h1 .highlighted
{
    font-size: 1.37em;
}
.main-banner h2
{
    margin-top: .25em;
    font-size: 1em;
    line-height: 1;
    text-align: center;
}
.main-banner .code-container
{
    font-size: 1.65em;
    margin-top: .65em;
    text-align: center;
}
.main-banner .code-container .code
{
    display: inline-block;
    border: none;
    padding: .125em .65em;
    color: #fff;
    border-style: dashed;
    border-radius: .4em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}
.main-banner .code-container .code.copied-successful
{
    color: #023a00;
    background-color: #fdc600;
}
.casino .main-banner .code-container .code.copied-successful
{
    color: #fff;
    background-color: #9441ff;
}
.main-banner .additional-term
{
    font-size: .625em;
    line-height: 1;
}/* Payment methods section styles */
.payment-methods
{
    padding: 2.313em 0;
}
.payment-methods h2
{
    font-size: 1.25em;
}
.payment-methods h3
{
    width: 60%;
    margin: .75em auto 0;
    font-size: 1em;
    font-weight: normal;
}
.payment-methods h2, .payment-methods h3
{
    text-align: center;
}
.payment-methods-container
{
    display: flex;
    padding: 0 0 2em 0;
    gap: .5em .375em;
    flex-wrap: wrap;
    justify-content: space-between;
}
.payment-methods-container img
{
    width: 7em;
    opacity: 60%;
}/* Early payout container */
.early-payout-container, .early-payout-video-container
{
    margin-top: 2em;
    padding-bottom: 2em;
}
.early-payout-container img
{
    width: 100%;
}/* Early payout video container */
.early-payout-video-container video
{
    max-width: 100%;
}
footer
{
    font-size: var(--font-old-design);
    color: #666;
    text-align: center;
}
footer .wrapper
{
    margin: var(--wrapper-old-design);
}
.eightteen-plus-container
{
    padding-top: 2.2em;
    border-top: 1px solid #ddd;
}
.eightteen-plus-container .img-container
{
    margin-bottom: 1em;
}
.eightteen-plus-container .img-container img
{
    height: 2.07407407em;
    margin: 0 .37037037em;
}
.license-container
{
    margin-top: 2.2em;
    padding: 2.2em 0;
    border-top: .07407407em solid #ddd;
}
.license-container .img-container
{
    display: flex;
    padding-bottom: 1.925925925em;
    justify-content: space-around;
}
.license-container .img-container img
{
    width: 8.14814814em;
}
.trustpilot-container
{
    display: flex;
    padding-bottom: 1em;
    align-items: center;
    justify-content: center;
}
.trustpilot-container img
{
    width: 6.6666666em;
    margin: 0 0 .444444444444em .444444444444em;
}/* Desktop styles */
@media only screen and (min-width: 1280px)
{
    :root
    {
        --font-old-design: calc(18px + (30 - 18) * ((100vw - 1200px) / (1920 - 1200)));
        --wrapper-old-design: 0 6.16666em;
    }
    body
    {
        font-size: calc(16px + (24 - 16) * ((100vw - 1280px) / (1920 - 1280)));
    }
    .wrapper
    {
        margin: 0 7.708333333333333em;
    }
    .cta
    {
        width: 9.478261em;
        margin: unset;
        font-size: 1.75em;
    }
    .mobile-element
    {
        display: none;
    }
    .desktop-element
    {
        display: unset;
    }/* Main banner section styles *//* .main-banner {
        height: 36.083333em;
    } */
    .main-banner.sports-bonus
    {/* background: url(../img/main-banners/sports-bonus-desktop.jpg) no-repeat; Default design */
        background: url(../../bcgamebettingde/image/sports-ipl-welcome-bonus-desktop.jpg) no-repeat;
        background-size: contain;
        background-color: #010242;
    }
    .main-banner.sports-welcome-short
    {
        background: url(../../bcgamebettingde/image/sports-welcome-short-desktop.jpg) no-repeat;
        background-size: cover;
    }
    .main-banner.sports-bonus-short
    {/* background: url(../img/main-banners/sports-bonus-short-desktop-Large.jpg) no-repeat; Default design */
        background: url(../../bcgamebettingde/image/sports-ipl-welcome-bonus-desktop.jpg) no-repeat;
        background-size: contain;
        background-color: #010242;
    }
    .main-banner.casino-bonus-short
    {
        background: url(../../bcgamebettingde/image/casino-bonus-short-desktop-Large.jpg) no-repeat;
        background-size: cover;
    }
    .main-banner.casino-bonus-jetx
    {
        background: url(../../bcgamebettingde/image/casino-bonus-jetx-desktop.jpg) no-repeat;
        background-size: cover;
    }
    .main-banner.casino-bonus-jetx-short
    {
        background: url(../../bcgamebettingde/image/casino-bonus-short-jetx-desktop-Large.jpg) no-repeat;
        background-size: cover;
    }
    .main-banner.casino-bonus-jetx-2-short
    {
        background: url(../../bcgamebettingde/image/casino-bonus-short-jetx-2-desktop-Large.jpg) no-repeat;
        background-size: cover;
    }
    .main-banner-container
    {
        width: 50%;
        padding-top: 2em;
    }
    .main-banner .logo img
    {
        width: 5em;
    }
    .main-banner .logo-ipl img
    {
        width: 5.33333333333em;
    }
    .main-banner h1, .main-banner .code-container
    {
        text-align: left;
    }
    .main-banner .code-container
    {
        font-size: 1.425em;
    }
    .main-banner h1
    {
        margin-top: .6em;
        font-size: 2.9em;
    }
    .main-banner h2
    {
        text-align: initial;
    }
    .main-banner .additional-term
    {
        font-size: .5em;
        margin-top: 1.2em;
        width: 69%;
    }/* Payment Methods section styles */
    .payment-methods
    {
        padding: 2.5em 0;
    }
    .payment-methods h3
    {
        width: 25%;
    }
    .payment-methods-container
    {
        padding: 2em 0 1em 0;
        gap: .25em 1em;
        justify-content: start;
    }
    .payment-methods-container img
    {
        width: 5.958333333333333em;
    }/* Early payout container */
    .early-payout-container, .early-payout-video-container
    {
        margin-top: 0;
        padding-bottom: 0;
        padding-top: 2em;
    }/* Early payout container */
    .early-payout-video-container
    {
        width: 75%;
        margin: 0 auto;
    }
    .eightteen-plus-container
    {
        padding-top: 1em;
    }
    .eightteen-plus-container .img-container
    {
        margin-bottom: .5em;
    }
    .eightteen-plus-container .img-container img
    {
        height: 1em;
        margin: 0 .07037em;
    }
    .eightteen-plus-container p, p.license-text
    {
        font-size: .4em;
    }
    .license-container
    {
        margin-top: auto;
        padding: 1em 0 1em;
        border-top: none;
    }
    .license-container .img-container
    {
        width: 10.7em;
        margin: 0 auto;
        padding-bottom: .8em;
        justify-content: space-between;
    }
    .license-container .img-container img
    {
        width: 4.66666666em;
    }
    .trustpilot-container
    {
        font-size: .5em;
    }
    .license-container .license-text
    {
        width: 96%;
        margin: 0 auto;
        text-align: left;
    }
}